NewBitSet
Initializes a new BitSet of the specified size.
def NewBitSet(
desiredCap: uint
) - > *BitSet
Initializes a new BitSet of the specified size.
Parameters
| Name | Type | Description |
|---|---|---|
| desiredCap | uint | The desired capacity for the new BitSet, representing the maximum number of bits it can hold. |
Returns
| Type | Description |
|---|---|
*BitSet | A pointer to the newly created BitSet. |