Hello, you have come here looking for the meaning of the word
. In DICTIOUS you will not only get to know all the dictionary meanings for the word
, but we will also tell you about its etymology, its characteristics and you will know how to say
in singular and plural. Everything you need to know about the word
you have here. The definition of the word
will help you to be more precise and correct when speaking or writing your texts. Knowing the definition of
, as well as those of other words, enriches your vocabulary and provides you with more and better linguistic resources.
- The following documentation is located at Module:Scribunto/types/documentation.
- Useful links: root page • root page’s subpages • links • transclusions • testcases • sandbox
A lookup table of the available data types in Lua 5.1.
There are ten types listed in ltm.c, which have all been included for the sake of completeness:
"boolean"
, "function"
, "nil"
, "number"
, "string"
and "table"
are common types widely encountered in Scribunto code.
"thread"
is exclusively used by the coroutine
library, which is not currently enabled in Scribunto, though that may change in the future.
"userdata"
is used to represent arbitrary non-Lua data, and is unlikely to appear in Scribunto.
"proto"
and "upval"
are undocumented types used for internal testing in Lua's development.
return {
= true,
= true,
= true,
= true,
= true,
= true,
= true,
= true,
= true,
= true,
}