Object
BitArray
BitArray | Constructor that constructs a empty BitArray |
BitArray | Constructor that constructs a BitArray from a string buffer. |
Append | Use this method to append a Boolean value to the array. |
Count | Use this function to get the element count from the array. |
GetAt | Gets element at given index. This method does the same as the Item method, but is here so that other plugins can make use of the BitArray internally. |
GetBytes | Serializes the BitArray to a string. |
IndexOf | Returns a index of first occurrence of a element in the array. This variation searches from start of the array. |
IndexOf | Returns a index of occurrence of a element in the array from a given starting point. |
Insert | Use this method to insert a value into the array. |
Item | Use this setter/getter function to read or write to a item in the array. |
Operator_Redim | Implements the Redim operator. |
Operator_Subscript | Implements operator to write to the array with the ( ) indexer operator. |
Operator_Subscript | Implements operator to write to the array with the ( ) indexer operator. |
Remove | Use this method to remove values from the array. |
Remove | Use this method to remove a single value from the array. |
Resize | Use this method to resize the array. |
SetAt | Sets element at given index. This method does the same as the Item method, but is here so that other plugins can make use of the BitArray internally. |
Sort | Use this method to sort the array. |
Swap | Use this method to swap two objects in the array. |