Id64.Uint32Set Class
A specialized replacement for Set
- The inputs are unsigned 32-bit integers;
- The inputs represent a valid Id64String (e.g., local ID is not zero).
@see Uint32Map for a similarly-optimized replacement for Map<Id64String, T>
Methods
Name | Description | |
---|---|---|
constructor(ids?: Id64Arg): Id64.Uint32Set | Construct a new Uint32Set. | |
add(low: number, high: number): void | Add an Id to the set. | |
addId(id: string): void | Add an Id to the set. | |
addIds(ids: Id64Arg): void | Add any number of Ids to the set. | |
clear(): void | Remove all contents of this set. | |
delete(low: number, high: number): void | Remove an Id from the set. | |
deleteId(id: string): void | Remove an Id from the set. | |
deleteIds(ids: Id64Arg): void | Remove any number of Ids from the set. | |
forEach(func: (lo: number, hi: number) => void): void | Execute a function against each Id in this set. | |
has(low: number, high: number): boolean | Returns true if the set contains the specified Id. | |
hasId(id: string): boolean | Returns true if the set contains the specified Id. | |
hasPair(pair: Id64.Uint32Pair): boolean | Returns true if the set contains the Id specified by pair . |
|
toId64Array(): Id64Array | Populates and returns an array of all Ids contained in the set. | |
toId64Set(): Id64Set | Populates and returns a set of all Ids contained in the set. |
Properties
Defined in
- core/bentley/src/Id.ts Line 497
Last Updated: 28 October, 2024
Found something wrong, missing, or unclear on this page?Raise an issue in our repo.