Libertas OS API Documentation
    Preparing search index...

    Interface LuaSet<T>

    A convenience type for working directly with a Lua table, used as a set.

    For more information see: https://typescripttolua.github.io/docs/advanced/language-extensions

    interface LuaSet<T extends AnyNotNil = AnyNotNil> {
        __tstlIterable: "PairsKey";
        add: LuaTableAddKeyMethod<T>;
        delete: LuaTableDeleteMethod<T>;
        has: LuaTableHasMethod<T>;
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    __tstlIterable: "PairsKey"