Show raw api
{
"functions": [
{
"name": "upper",
"desc": "UTF8 uppercase",
"params": [
{
"name": "str",
"desc": "",
"lua_type": "string"
}
],
"returns": [
{
"desc": "",
"lua_type": "string"
}
],
"function_type": "static",
"source": {
"line": 21,
"path": "src/utf8/src/Shared/UTF8.lua"
}
},
{
"name": "lower",
"desc": "UTF8 lowercase",
"params": [
{
"name": "str",
"desc": "",
"lua_type": "string"
}
],
"returns": [
{
"desc": "",
"lua_type": "string"
}
],
"function_type": "static",
"source": {
"line": 40,
"path": "src/utf8/src/Shared/UTF8.lua"
}
}
],
"properties": [
{
"name": "UPPER_MAP",
"desc": "UTF8 lower to uppercase map",
"lua_type": "{ [string]: string }",
"source": {
"line": 59,
"path": "src/utf8/src/Shared/UTF8.lua"
}
},
{
"name": "LOWER_MAP",
"desc": "UTF8 uppercase to lowercase map",
"lua_type": "{ [string]: string }",
"source": {
"line": 170,
"path": "src/utf8/src/Shared/UTF8.lua"
}
}
],
"types": [],
"name": "UTF8",
"desc": "UTF8 utility functions\n\n```lua\nprint(UTF8.upper(\"Foo\"))\n--FOO\nprint(UTF8.lower(\"Bar\"))\n--bar\n```",
"source": {
"line": 13,
"path": "src/utf8/src/Shared/UTF8.lua"
}
}