nextUint32 property

int get nextUint32

Implementation

int get nextUint32 {
  if (_c + 4 > _out.length) {
    _generateBlocks(_out, 1);
    _c = 0;
  }
  final int result = (_out[_c] << 24) |
      (_out[_c + 1] << 16) |
      (_out[_c + 2] << 8) |
      (_out[_c + 3]);
  _c += 4;
  return result;
}