operator []= abstract method

void operator []=(
  1. T index,
  2. bool value
)

Sets the bit with the given index to the given value.

If value is true, the bit with the given index is set to one. Otherwise, the bit is set to zero.

Implementation

void operator []=(T index, bool value);