clearBits method

void clearBits(
  1. Iterable<int> indexes
)

Sets the bits specified by the indexes to false.

Implementation

void clearBits(Iterable<int> indexes) {
  indexes.forEach(clearBit);
}