bitsSet property

  1. @nonVirtual
int bitsSet

Returns the number of set bits in value.

Implementation

@nonVirtual
int get bitsSet {
  return value.countSetBits(size);
}