A typed interface for bit flags. This is not a real object, only a typed interface for an actual Int. Each flag can be tested/set with the corresponding enum instance. Up to 32 flags can be stored that way.
Enum constructor indices are preserved from Haxe syntax, so the first declared is index 0, the next index 1 etc. The methods are optimized if the enum instance is passed directly, e.g. as has(EnumCtor). Otherwise Type.enumIndex() reflection is used.
Static methods
Constructor
Methods
inlinehas(v:T):Bool
Checks if the index of enum instance v is set.
This method is optimized if v is an enum instance expression such as
SomeEnum.SomeCtor.
If v is null, the result is unspecified.
inlineset(v:T):Void
Sets the index of enum instance v.
This method is optimized if v is an enum instance expression such as
SomeEnum.SomeCtor.
If v is null, the result is unspecified.