C# Класс Antlr.Runtime.BitSet

A stripped-down version of org.antlr.misc.BitSet that is just good enough to handle runtime requirements such as FOLLOW sets for automatic error recovery.
Наследование: ICloneable
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
Add ( int el ) : void

or this element into this set (grow as necessary to accommodate)

BitSet ( ) : System.Collections.Generic

Construct a bitset of size one word (64 bits)

BitSet ( IEnumerable items ) : System.Collections.Generic

Construction from a list of integers

BitSet ( int nbits ) : System.Collections.Generic

Construct a bitset given the size

Clone ( ) : object
Equals ( object other ) : bool
GetHashCode ( ) : int
GrowToInclude ( int bit ) : void

Grows the set to a larger number of bits.

IsNil ( ) : bool
LengthInLongWords ( ) : int

return how much space is being used by the bits array not how many actually have member bits on.

Member ( int el ) : bool
NumBits ( ) : int
Of ( int el ) : BitSet
Of ( int a, int b ) : BitSet
Of ( int a, int b, int c ) : BitSet
Of ( int a, int b, int c, int d ) : BitSet
Or ( BitSet a ) : BitSet

return this | a in a new set

OrInPlace ( BitSet a ) : void
Remove ( int el ) : void
Size ( ) : int
ToArray ( ) : int[]
ToString ( ) : string
ToString ( string tokenNames ) : string

Приватные методы

Метод Описание
BitMask ( int bitNumber ) : ulong
BitSet ( ulong bits ) : System.Collections.Generic
NumWordsToHold ( int el ) : int
SetSize ( int nwords ) : void

Sets the size of a set.

WordNumber ( int bit ) : int

Описание методов

Add() публичный Метод

or this element into this set (grow as necessary to accommodate)
public Add ( int el ) : void
el int
Результат void

BitSet() публичный Метод

Construct a bitset of size one word (64 bits)
public BitSet ( ) : System.Collections.Generic
Результат System.Collections.Generic

BitSet() публичный Метод

Construction from a list of integers
public BitSet ( IEnumerable items ) : System.Collections.Generic
items IEnumerable
Результат System.Collections.Generic

BitSet() публичный Метод

Construct a bitset given the size
public BitSet ( int nbits ) : System.Collections.Generic
nbits int The size of the bitset in bits
Результат System.Collections.Generic

Clone() публичный Метод

public Clone ( ) : object
Результат object

Equals() публичный Метод

public Equals ( object other ) : bool
other object
Результат bool

GetHashCode() публичный Метод

public GetHashCode ( ) : int
Результат int

GrowToInclude() публичный Метод

Grows the set to a larger number of bits.
public GrowToInclude ( int bit ) : void
bit int element that must fit in set
Результат void

IsNil() публичный Метод

public IsNil ( ) : bool
Результат bool

LengthInLongWords() публичный Метод

return how much space is being used by the bits array not how many actually have member bits on.
public LengthInLongWords ( ) : int
Результат int

Member() публичный Метод

public Member ( int el ) : bool
el int
Результат bool

NumBits() публичный Метод

public NumBits ( ) : int
Результат int

Of() публичный статический Метод

public static Of ( int el ) : BitSet
el int
Результат BitSet

Of() публичный статический Метод

public static Of ( int a, int b ) : BitSet
a int
b int
Результат BitSet

Of() публичный статический Метод

public static Of ( int a, int b, int c ) : BitSet
a int
b int
c int
Результат BitSet

Of() публичный статический Метод

public static Of ( int a, int b, int c, int d ) : BitSet
a int
b int
c int
d int
Результат BitSet

Or() публичный Метод

return this | a in a new set
public Or ( BitSet a ) : BitSet
a BitSet
Результат BitSet

OrInPlace() публичный Метод

public OrInPlace ( BitSet a ) : void
a BitSet
Результат void

Remove() публичный Метод

public Remove ( int el ) : void
el int
Результат void

Size() публичный Метод

public Size ( ) : int
Результат int

ToArray() публичный Метод

public ToArray ( ) : int[]
Результат int[]

ToString() публичный Метод

public ToString ( ) : string
Результат string

ToString() публичный Метод

public ToString ( string tokenNames ) : string
tokenNames string
Результат string