模組:Pn
閱讀設定
模組解[開]
你可能想去為呢個Scribunto module開一個解版。 編者可以響呢個模組嘅沙盤 (開 | 鏡)同埋試例 (開)版度試驗佢。 請加個類到個/doc嘅細版度。 呢個模組嘅細版。 |
--[[
Module that returns one value from a list of unnamed parameters
Named parameter idx is the index of the parameter that is to be returned
Negative indices count backward from the end of the list
==]]
local p = {}
p.getVal = function(frame)
local args = {}
-- copy arguments from frame object and its parent
for k, v in pairs(frame.args) do
args[k] = v
end
for k, v in pairs(frame:getParent().args) do
args[k] = v
end
if not args[1] then
return nil
end
local idx = tonumber(args.idx) or 1
if idx < 0 then idx = #args + idx + 1 end
return args[idx]
end
return p