Method Wrap
Wrap(Int64[])
Creates a new long buffer by wrapping the given long array.
Calling this method has the same effect as
Wrap(array, 0, array.Length)
.
Declaration
public static Int64Buffer Wrap(long[] array)
Parameters
Type | Name | Description |
---|---|---|
System.Int64[] | array | the long array which the new buffer will be based on. |
Returns
Type | Description |
---|---|
Int64Buffer | the created long buffer. |
Wrap(Int64[], Int32, Int32)
Declaration
public static Int64Buffer Wrap(long[] array, int start, int len)
Parameters
Type | Name | Description |
---|---|---|
System.Int64[] | array | |
System.Int32 | start | |
System.Int32 | len |
Returns
Type | Description |
---|---|
Int64Buffer |