BitSet (BitSet)
Creates an empty bitset for a given number of indexes.
Arguments
size
is an integer number.
Return values
bitset
is the new BitSet with no elements set.
Complexity
O(size)
Example
Output:
TRUE
a=FALSE,FALSE,TRUE,TRUE,FALSE,
Creates an empty bitset for a given number of indexes.
O(size)