Method Clear
Clear(Int64)
Clears a bit, allowing access beyond the current set size without changing the size.
Declaration
public virtual void Clear(long index)
Parameters
Type | Name | Description |
---|---|---|
System.Int64 | index |
Clear(Int32, Int32)
Clears a range of bits. Clearing past the end does not change the size of the set.
Declaration
public virtual void Clear(int startIndex, int endIndex)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | startIndex | Lower index |
System.Int32 | endIndex | One-past the last bit to clear |
Clear(Int64, Int64)
Clears a range of bits. Clearing past the end does not change the size of the set.
Declaration
public virtual void Clear(long startIndex, long endIndex)
Parameters
Type | Name | Description |
---|---|---|
System.Int64 | startIndex | Lower index |
System.Int64 | endIndex | One-past the last bit to clear |