Struct IntegerArray

IntegerArray structure

Wraps an encoded ArraySegment and exposes it as an IList.

public struct IntegerArray : IList<uint>, IReadOnlyList<uint>

Constructors

NameDescription
IntegerArray(ArraySegment<byte>, IndexEncodingType)Initializes a new instance of the IntegerArray struct.
IntegerArray(ArraySegment<byte>, int, int, IndexEncodingType)Initializes a new instance of the IntegerArray struct.

Properties

NameDescription
Count { get; }Gets the number of elements in the range delimited by the IntegerArray
Item { get; set; }

Methods

NameDescription
Contains(uint)
CopyTo(uint[], int)
Fill(IEnumerable<int>, int)
Fill(IEnumerable<uint>, int)
GetEnumerator()
IndexOf(uint)

See Also