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

BitSet() public method

Construction from a list of integers
public BitSet ( IEnumerable items ) : System.Collections.Generic
items IEnumerable
return System.Collections.Generic
        public BitSet( IEnumerable<int> items )
            : this()
        {
            foreach ( int i in items )
                Add( i );
        }

Same methods

BitSet::BitSet ( ) : System.Collections.Generic
BitSet::BitSet ( int nbits ) : System.Collections.Generic
BitSet::BitSet ( ulong bits ) : System.Collections.Generic