Flags

Flags<T>(T)

package cs

from T to T

Available on cs

Use this type to have access to the bitwise operators of C# enums that have a cs.system.FlagsAttribute attribute.

Usage example:

	import cs.system.reflection.BindingFlags;
	var binding = new Flags(BindingFlags.Public) | BindingFlags.Static | BindingFlags.NonPublic;

Constructor

inline new (?initial:Null<T>)

Creates