getBit method

bool getBit(
  1. int globalBit
)

Implementation

bool getBit(int globalBit) =>
    _longs[getIndexForBit(globalBit)] & (1 << getLocalBit(globalBit)) != 0;