Navigation :
flags
flags, function
def const pure flags(...n: number): flagset
Returns a 64-set containing all the integer values provided in n.
n: the integer (between 0 and 63) flags to include in the resulting 64-set.
Examples
show table "Flags" with
text(flags(0, 2, 5)) as "Set"
popCount(flags(0, 2, 5)) as "Count"
Output:
Errors
Each value in n must be an integer in the range [0..63].
See also