Codebase list lua-ldoc / d8042a7f-5b58-4534-8e96-54b5b7978733/main tests / styles / func.lua
d8042a7f-5b58-4534-8e96-54b5b7978733/main

Tree @d8042a7f-5b58-4534-8e96-54b5b7978733/main (Download .tar.gz)

func.lua @d8042a7f-5b58-4534-8e96-54b5b7978733/mainraw · history · blame

------------
-- Get length of string.
-- A (silly) module which returns a single function
--
-- @module func
-- @string some text
-- @param opts multibyte encoding options
-- @string opts.charset encoding used
-- @bool opts.strict be very pedantic
-- @bool verbose tell the world about everything
-- @return its length
return function(s,opts,verbose)
    return #s
end