Class Int64Buffer
A buffer of longs.
A long buffer can be created in either of the following ways:
- Allocate(Int32) a new long array and create a buffer based on it
- Wrap(Int64[]) an existing long array to create a new buffer
Inherited Members
Assembly: DistributedLucene.Net.dll
Syntax
public abstract class Int64Buffer : Buffer, IComparable<Int64Buffer>
Properties
Name | Description |
---|---|
Array | |
ArrayOffset | |
HasArray | |
IsDirect | |
Order | |
ProtectedArray | |
ProtectedArrayOffset | |
ProtectedHasArray |
Methods
Name | Description |
---|---|
Allocate(Int32) | Creates a long buffer based on a newly allocated long array. |
AsReadOnlyBuffer() | |
Compact() | |
CompareTo(Int64Buffer) | |
Duplicate() | |
Equals(Object) | |
Get() | |
Get(Int32) | |
Get(Int64[]) | |
Get(Int64[], Int32, Int32) | |
GetHashCode() | |
Put(Int64Buffer) | |
Put(Int32, Int64) | |
Put(Int64) | |
Put(Int64[]) | |
Put(Int64[], Int32, Int32) | |
Slice() | |
ToString() | |
Wrap(Int64[]) | Creates a new long buffer by wrapping the given long array.
Calling this method has the same effect as
|
Wrap(Int64[], Int32, Int32) |