Lua: improve function documentations
This commit is contained in:
parent
2712d3e869
commit
1f9384542e
1 changed files with 4 additions and 1 deletions
|
@ -93,7 +93,10 @@ pushFilterFunction :: LuaFilterFunction -> Lua ()
|
|||
pushFilterFunction (LuaFilterFunction fnRef) =
|
||||
Lua.getref Lua.registryindex fnRef
|
||||
|
||||
|
||||
-- | Fetch either a list of elements from the stack. If there is a single
|
||||
-- element instead of a list, fetch that element as a singleton list. If the top
|
||||
-- of the stack is nil, return the default element that was passed to this
|
||||
-- function. If none of these apply, raise an error.
|
||||
elementOrList :: Peekable a => a -> Lua [a]
|
||||
elementOrList x = do
|
||||
let topOfStack = Lua.stackTop
|
||||
|
|
Loading…
Reference in a new issue