Libertas OS API Documentation
    Preparing search index...

    Interface ReadonlyLuaMap<K, V>

    Readonly version of LuaMap.

    interface ReadonlyLuaMap<K extends AnyNotNil = AnyNotNil, V = any> {
        __tstlIterable: "Pairs";
        get: LuaTableGetMethod<K, V>;
        has: LuaTableHasMethod<K>;
    }

    Type Parameters

    • K extends AnyNotNil = AnyNotNil

      The type of the keys used to access the table.

    • V = any

      The type of the values stored in the table.

    Hierarchy (View Summary)

    Index

    Properties

    __tstlIterable: "Pairs"