Antlr.Runtime.BitSet.BitSet C# (CSharp) Method

BitSet() public method

Construct a bitset given the size
public BitSet ( int nbits ) : System.Collections.Generic
nbits int The size of the bitset in bits
return System.Collections.Generic
        public BitSet( int nbits )
        {
            _bits = new ulong[( ( nbits - 1 ) >> LOG_BITS ) + 1];
        }

Same methods

BitSet::BitSet ( ) : System.Collections.Generic
BitSet::BitSet ( IEnumerable items ) : System.Collections.Generic
BitSet::BitSet ( ulong bits ) : System.Collections.Generic