Class BytesRefArray
A simple append only random-access Bytes
Note: this class is not Thread-Safe!
Note
This API is for internal purposes only and might change in incompatible ways in the next release.
Note
This API is experimental and might change in incompatible ways in the next release.
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 |
GetEnumerator()
Sugar for GetEnumerator(IComparer<BytesRef>) with a null
comparer.
Declaration
public IBytesRefEnumerator GetEnumerator()
Returns
Type | Description |
---|---|
IBytes |
GetEnumerator(IComparer<BytesRef>)
Returns a IBytes
If a non null
IComparer{Bytes
This is a non-destructive operation.
Declaration
public IBytesRefEnumerator GetEnumerator(IComparer<BytesRef> comparer)
Parameters
Type | Name | Description |
---|---|---|
System. |
comparer |
Returns
Type | Description |
---|---|
IBytes |