RoleFlagsBitField

export class RoleFlagsBitField extends BitField<RoleFlagsString>
export class RoleFlagsBitField extends BitField<RoleFlagsString>
Data structure that makes it easy to interact with a flags bitfield.
bitfield:number
Bitfield of the packed bits
Inherited from BitField
Static
Flags:typeof RoleFlags
Numeric role flags.
[Symbol.iterator]():IterableIterator<RoleFlagsString>
Adds bits to these ones.
Returns
These bits or new BitField if the instance is frozen.
NameTypeOptionalDescription
...bitsBitFieldResolvable<RoleFlagsString, number>[]NoBits to add
Inherited from BitField
any(bit):boolean
Checks whether the bitfield has a bit, or any of multiple bits.
NameTypeOptionalDescription
bitBitFieldResolvable<RoleFlagsString, number>NoBit(s) to check for
Inherited from BitField
equals(bit):boolean
Checks if this bitfield equals another
NameTypeOptionalDescription
bitBitFieldResolvable<RoleFlagsString, number>NoBit(s) to check for
Inherited from BitField
Freezes these bits, making them immutable.
Inherited from BitField
has(bit):boolean
Checks whether the bitfield has a bit, or multiple bits.
NameTypeOptionalDescription
bitBitFieldResolvable<RoleFlagsString, number>NoBit(s) to check for
Inherited from BitField
missing(bits, ...hasParams):RoleFlagsString[]
Gets all given bits that are missing from the bitfield.
NameTypeOptionalDescription
bitsBitFieldResolvable<RoleFlagsString, number>NoBit(s) to check for
...hasParamsreadonly unknown[]NoAdditional parameters for the has method, if any
Inherited from BitField
remove(...bits):BitField<RoleFlagsString, number>
Removes bits from these.
Returns
These bits or new BitField if the instance is frozen.
NameTypeOptionalDescription
...bitsBitFieldResolvable<RoleFlagsString, number>[]NoBits to remove
Inherited from BitField
Static
resolve(bit?):number
NameTypeOptionalDescription
bitBitFieldResolvable<RoleFlagsString, number>YesNone
serialize(...hasParams):Record<RoleFlagsString, boolean>
Gets an object mapping field names to a boolean indicating whether the bit is available.
NameTypeOptionalDescription
...hasParamsreadonly unknown[]NoAdditional parameters for the has method, if any
Inherited from BitField
toArray(...hasParams):RoleFlagsString[]
Gets an Array of bitfield names based on the bits available.
NameTypeOptionalDescription
...hasParamsreadonly unknown[]NoAdditional parameters for the has method, if any
Inherited from BitField
toJSON():number extends number ? number : string
valueOf():number