Class BytesRefArray
A simple append only random-access Bytes
Note: this class is not Thread-Safe!
Inheritance
Inherited Members
Namespace: Lucene.Net.Util
Assembly: Lucene.Net.dll
Syntax
public sealed class BytesRefArray
Constructors
| Improve this Doc View SourceBytesRefArray(Counter)
Creates a new Bytes
Declaration
public BytesRefArray(Counter bytesUsed)
Parameters
Type | Name | Description |
---|---|---|
Counter | bytesUsed |
Properties
| Improve this Doc View SourceLength
Returns the current size of this Bytes
NOTE: This was size() in Lucene.
Declaration
public int Length { get; }
Property Value
Type | Description |
---|---|
System. |
The current size of this Bytes |
Methods
| Improve this Doc View SourceAppend(BytesRef)
Appends a copy of the given Bytes
Declaration
public int Append(BytesRef bytes)
Parameters
Type | Name | Description |
---|---|---|
Bytes |
bytes | The bytes to append |
Returns
Type | Description |
---|---|
System. |
The index of the appended bytes |
Clear()
Clears this Bytes
Declaration
public void Clear()
Get(BytesRef, Int32)
Returns the n'th element of this Bytes
Declaration
public BytesRef Get(BytesRef spare, int index)
Parameters
Type | Name | Description |
---|---|---|
Bytes |
spare | A spare Bytes |
System. |
index | The elements index to retrieve |
Returns
Type | Description |
---|---|
Bytes |
The n'th element of this Bytes |
GetIterator()
Sugar for GetIterator(IComparer<BytesRef>) with a null
comparer
Declaration
public IBytesRefIterator GetIterator()
Returns
Type | Description |
---|---|
IBytes |
GetIterator(IComparer<BytesRef>)
Returns a IBytes
If a non null
IComparer{Bytes
This is a non-destructive operation.
Declaration
public IBytesRefIterator GetIterator(IComparer<BytesRef> comp)
Parameters
Type | Name | Description |
---|---|---|
System. |
comp |
Returns
Type | Description |
---|---|
IBytes |