Module:dump/documentation

Hello, you have come here looking for the meaning of the word Module:dump/documentation. In DICTIOUS you will not only get to know all the dictionary meanings for the word Module:dump/documentation, but we will also tell you about its etymology, its characteristics and you will know how to say Module:dump/documentation in singular and plural. Everything you need to know about the word Module:dump/documentation you have here. The definition of the word Module:dump/documentation will help you to be more precise and correct when speaking or writing your texts. Knowing the definition ofModule:dump/documentation, as well as those of other words, enriches your vocabulary and provides you with more and better linguistic resources.

See Module:Dump on Wikipedia for documentation.

testcase = {  -- table_1
    "one",
    "two",
     = "negative one",
     = "one half",
     = "ninety nine",
     = "one hundred",
     = "space",
     = "unicode",
    alpha = "aaa",
    beta = "bbb",
    c = 123,
    data = {  -- table_2
        __metatable = {
            __index = function_1,
            __tostring = function_2,
        },
        "three",
        "four",
         = "F",
         = "T",
        function_3 = "dumper",
        F = false,
        T = true,
        alpha2 = "aaa2",
        beta2 = "bbb2",
        c2 = 1234,
        data2 = {
            "five",
            "six",
            alpha3 = "aaa3",
            beta3 = "bbb3",
            c3 = 12345,
            fruit = {  -- table_5
                "apple",
                "banana",
                 = "zero",
                back = table_2,  -- repeat
                table_6 = "anon",
            },
            me = table_1,  -- repeat
            table_5 = "fruit",
        },
        dumper = function_3,
        me = table_2,  -- self
    },
    testcase = table_1,  -- self
    z = "zoo",
}