Skip to main content

UTF8

UTF8 utility functions

Properties

UPPER_MAP

UTF8.UPPER_MAP: {[string]string}

UTF8 lower to uppercase map

LOWER_MAP

UTF8.LOWER_MAP: {[string]string}

UTF8 uppercase to lowercase map

Functions

upper

UTF8.upper(strstring) → string

UTF8 uppercase

lower

UTF8.lower(strstring) → string

UTF8 lowercase

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": 13,
                "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": 32,
                "path": "src/utf8/src/Shared/UTF8.lua"
            }
        }
    ],
    "properties": [
        {
            "name": "UPPER_MAP",
            "desc": "UTF8 lower to uppercase map",
            "lua_type": "{ [string]: string }",
            "source": {
                "line": 51,
                "path": "src/utf8/src/Shared/UTF8.lua"
            }
        },
        {
            "name": "LOWER_MAP",
            "desc": "UTF8 uppercase to lowercase map",
            "lua_type": "{ [string]: string }",
            "source": {
                "line": 162,
                "path": "src/utf8/src/Shared/UTF8.lua"
            }
        }
    ],
    "types": [],
    "name": "UTF8",
    "desc": "UTF8 utility functions",
    "source": {
        "line": 5,
        "path": "src/utf8/src/Shared/UTF8.lua"
    }
}