C# Class BitsetsNET.ArrayContainer

Inheritance: Container
Afficher le fichier Open project: BitSetsNet/BitSetsNet Class Usage Examples

Méthodes publiques

Свойство Type Description
Cardinality int
Content ushort[]

Méthodes publiques

Méthode Description
Add ( ushort x ) : Container

Computes the bitwise AND of this container with another (intersection). This container as well as the provided container are left unaffected.

Add ( ushort rangeStart, ushort rangeEnd ) : Container

Add to the current bitmap all integers in [rangeStart,rangeEnd).

And ( ArrayContainer value2 ) : Container

Computes the bitwise AND of this container with another (intersection). This container as well as the provided container are left unaffected.

And ( BitsetContainer x ) : Container

Computes the bitwise AND of this container with another (intersection). This container as well as the provided container are left unaffected.

AndNot ( ArrayContainer x ) : Container

Returns the elements of this ArrayContainer that are not in the other ArrayContainer.

AndNot ( BitsetContainer x ) : Container

Returns the elements of this ArrayContainer that are not in the other BitSetContainer.

ArrayContainer ( ) : System
ArrayContainer ( int capacity ) : System
ArrayContainer ( ushort newContent ) : System
Clone ( ) : Container

Creates a deep copy of this array container.

Contains ( ushort x ) : bool

Checks whether the container contains the provided value.

Deserialize ( BinaryReader reader, int cardinality ) : ArrayContainer

Deserialize a container from binary format, as written by the Serialize method, minus the first 32 bits giving the cardinality.

Equals ( Object o ) : bool
FillLeastSignificant16bits ( int x, int i, int mask ) : void

Fill the least significant 16 bits of the integer array, starting at index i, with the short values from this container. The caller is responsible to allocate enough room. The most significant 16 bits of each integer are given by the most significant bits of the provided mask.

Flip ( ushort x ) : Container

If elements is present in container, add it. Otherwise, remove it.

GetCardinality ( ) : int

Computes the distinct number of short values in the container. Can be expected to run in constant time.

GetEnumerator ( ) : IEnumerator
GetHashCode ( ) : int
IAdd ( ushort begin, ushort end ) : Container

Adds range of elements (in-place) to this container.

IAnd ( ArrayContainer other ) : Container

Computes the in-place bitwise AND of this container with another (intersection). The current container is generally modified, whereas the provided container (x) is unaffected. May generate a new container.

IAnd ( BitsetContainer other ) : Container

Computes the in-place bitwise AND of this container with another (intersection). The current container is generally modified, whereas the provided container (x) is unaffected. May generate a new container.

IAndNot ( ArrayContainer x ) : Container

Returns the elements of this ArrayContainer that are not in the other ArrayContainer.

IAndNot ( BitsetContainer x ) : Container

Returns the elements of this ArrayContainer that are not in the other BitSetContainer. Modifies the current container in place.

INot ( int firstOfRange, int lastOfRange ) : Container

Computes the in-place bitwise NOT of this container (complement). Only those bits within the range are affected.The current container is generally modified.May generate a new container.

IOr ( ArrayContainer x ) : Container

Computes the in-place bitwise OR of this container with another (union). The current container is generally modified, whereas the provided container(x) is unaffected.May generate a new container.

IOr ( BitsetContainer x ) : Container

Computes the in-place bitwise OR of this container with another (union). The current container is generally modified, whereas the provided container(x) is unaffected.May generate a new container.

IncreaseCapacity ( ) : void
Intersects ( ArrayContainer x ) : bool

Returns true if the current container intersects the other container.

Intersects ( BitsetContainer x ) : bool

Returns true if the current container intersects the other container.

LoadData ( BitsetContainer bitsetContainer ) : void
Or ( ArrayContainer x ) : Container

Computes the bitwise OR of this container with another (union). This container as well as the provided container are left unaffected.

Or ( BitsetContainer x ) : Container

Computes the bitwise OR of this container with another (union). This container as well as the provided container are left unaffected.

Remove ( ushort x ) : Container

Remove specified short from this container. May create a new container.

Remove ( ushort begin, ushort end ) : Container

Remove shorts in [begin,end) using an unsigned interpretation. May generate a new container.

Select ( int j ) : ushort

Return the jth value of the container.

Serialize ( BinaryWriter writer ) : void

Serialize this container in a binary format.

The serialization format is first the cardinality of the container as a 32-bit integer, followed by an array of the indices in this container as 16-bit integers.

ToBitsetContainer ( ) : BitsetContainer

Private Methods

Méthode Description
ArrayContainer ( int cardinality, ushort inpContent ) : System
IncreaseCapacity ( int min ) : void
NegateRange ( ushort buffer, int startIndex, int lastIndex, int startRange, int lastRange ) : void

Method Details

Add() public méthode

Computes the bitwise AND of this container with another (intersection). This container as well as the provided container are left unaffected.
public Add ( ushort x ) : Container
x ushort Other container
Résultat Container

Add() public méthode

Add to the current bitmap all integers in [rangeStart,rangeEnd).
public Add ( ushort rangeStart, ushort rangeEnd ) : Container
rangeStart ushort inclusive beginning of range
rangeEnd ushort exclusive ending of range
Résultat Container

And() public méthode

Computes the bitwise AND of this container with another (intersection). This container as well as the provided container are left unaffected.
public And ( ArrayContainer value2 ) : Container
value2 ArrayContainer
Résultat Container

And() public méthode

Computes the bitwise AND of this container with another (intersection). This container as well as the provided container are left unaffected.
public And ( BitsetContainer x ) : Container
x BitsetContainer Other container
Résultat Container

AndNot() public méthode

Returns the elements of this ArrayContainer that are not in the other ArrayContainer.
public AndNot ( ArrayContainer x ) : Container
x ArrayContainer the other ArrayContainer
Résultat Container

AndNot() public méthode

Returns the elements of this ArrayContainer that are not in the other BitSetContainer.
public AndNot ( BitsetContainer x ) : Container
x BitsetContainer the BitSetContainer to compare against
Résultat Container

ArrayContainer() public méthode

public ArrayContainer ( ) : System
Résultat System

ArrayContainer() public méthode

public ArrayContainer ( int capacity ) : System
capacity int
Résultat System

ArrayContainer() public méthode

public ArrayContainer ( ushort newContent ) : System
newContent ushort
Résultat System

Clone() public méthode

Creates a deep copy of this array container.
public Clone ( ) : Container
Résultat Container

Contains() public méthode

Checks whether the container contains the provided value.
public Contains ( ushort x ) : bool
x ushort Value to check
Résultat bool

Deserialize() public static méthode

Deserialize a container from binary format, as written by the Serialize method, minus the first 32 bits giving the cardinality.
public static Deserialize ( BinaryReader reader, int cardinality ) : ArrayContainer
reader System.IO.BinaryReader The reader to deserialize from.
cardinality int
Résultat ArrayContainer

Equals() public méthode

public Equals ( Object o ) : bool
o Object
Résultat bool

FillLeastSignificant16bits() public méthode

Fill the least significant 16 bits of the integer array, starting at index i, with the short values from this container. The caller is responsible to allocate enough room. The most significant 16 bits of each integer are given by the most significant bits of the provided mask.
public FillLeastSignificant16bits ( int x, int i, int mask ) : void
x int Provided array
i int Starting index
mask int Indicates most significant bits
Résultat void

Flip() public méthode

If elements is present in container, add it. Otherwise, remove it.
public Flip ( ushort x ) : Container
x ushort Element to add
Résultat Container

GetCardinality() public méthode

Computes the distinct number of short values in the container. Can be expected to run in constant time.
public GetCardinality ( ) : int
Résultat int

GetEnumerator() public méthode

public GetEnumerator ( ) : IEnumerator
Résultat IEnumerator

GetHashCode() public méthode

public GetHashCode ( ) : int
Résultat int

IAdd() public méthode

Adds range of elements (in-place) to this container.
public IAdd ( ushort begin, ushort end ) : Container
begin ushort Start of range (inclusive)
end ushort End of range (exclusive)
Résultat Container

IAnd() public méthode

Computes the in-place bitwise AND of this container with another (intersection). The current container is generally modified, whereas the provided container (x) is unaffected. May generate a new container.
public IAnd ( ArrayContainer other ) : Container
other ArrayContainer
Résultat Container

IAnd() public méthode

Computes the in-place bitwise AND of this container with another (intersection). The current container is generally modified, whereas the provided container (x) is unaffected. May generate a new container.
public IAnd ( BitsetContainer other ) : Container
other BitsetContainer
Résultat Container

IAndNot() public méthode

Returns the elements of this ArrayContainer that are not in the other ArrayContainer.
public IAndNot ( ArrayContainer x ) : Container
x ArrayContainer the other ArrayContainer
Résultat Container

IAndNot() public méthode

Returns the elements of this ArrayContainer that are not in the other BitSetContainer. Modifies the current container in place.
public IAndNot ( BitsetContainer x ) : Container
x BitsetContainer the BitSetContainer to compare against
Résultat Container

INot() public méthode

Computes the in-place bitwise NOT of this container (complement). Only those bits within the range are affected.The current container is generally modified.May generate a new container.
public INot ( int firstOfRange, int lastOfRange ) : Container
firstOfRange int beginning of range (inclusive); 0 is beginning of this container.
lastOfRange int ending of range (exclusive)
Résultat Container

IOr() public méthode

Computes the in-place bitwise OR of this container with another (union). The current container is generally modified, whereas the provided container(x) is unaffected.May generate a new container.
public IOr ( ArrayContainer x ) : Container
x ArrayContainer Other container
Résultat Container

IOr() public méthode

Computes the in-place bitwise OR of this container with another (union). The current container is generally modified, whereas the provided container(x) is unaffected.May generate a new container.
public IOr ( BitsetContainer x ) : Container
x BitsetContainer Other container
Résultat Container

IncreaseCapacity() public méthode

public IncreaseCapacity ( ) : void
Résultat void

Intersects() public méthode

Returns true if the current container intersects the other container.
public Intersects ( ArrayContainer x ) : bool
x ArrayContainer Other container
Résultat bool

Intersects() public méthode

Returns true if the current container intersects the other container.
public Intersects ( BitsetContainer x ) : bool
x BitsetContainer Other container
Résultat bool

LoadData() public méthode

public LoadData ( BitsetContainer bitsetContainer ) : void
bitsetContainer BitsetContainer
Résultat void

Or() public méthode

Computes the bitwise OR of this container with another (union). This container as well as the provided container are left unaffected.
public Or ( ArrayContainer x ) : Container
x ArrayContainer Other container
Résultat Container

Or() public méthode

Computes the bitwise OR of this container with another (union). This container as well as the provided container are left unaffected.
public Or ( BitsetContainer x ) : Container
x BitsetContainer Other container
Résultat Container

Remove() public méthode

Remove specified short from this container. May create a new container.
public Remove ( ushort x ) : Container
x ushort Short to be removed
Résultat Container

Remove() public méthode

Remove shorts in [begin,end) using an unsigned interpretation. May generate a new container.
public Remove ( ushort begin, ushort end ) : Container
begin ushort Start of range (inclusive)
end ushort End of range (exclusive)
Résultat Container

Select() public méthode

Return the jth value of the container.
public Select ( int j ) : ushort
j int Index of the value
Résultat ushort

Serialize() public méthode

Serialize this container in a binary format.
The serialization format is first the cardinality of the container as a 32-bit integer, followed by an array of the indices in this container as 16-bit integers.
public Serialize ( BinaryWriter writer ) : void
writer System.IO.BinaryWriter The writer to which to serialize this container.
Résultat void

ToBitsetContainer() public méthode

public ToBitsetContainer ( ) : BitsetContainer
Résultat BitsetContainer

Property Details

Cardinality public_oe property

public int Cardinality
Résultat int

Content public_oe property

public ushort[] Content
Résultat ushort[]