메소드 | 설명 | |
---|---|---|
CopyTo ( |
Copies the elements of the given sparse array to this sparse array, starting at a particular index. Existing values are overwritten.
|
|
CopyTo ( object source, uint start, int length ) : void |
Copies the elements of the sparse array to this sparse array, starting at a particular index. Existing values are overwritten.
|
|
Delete ( uint index ) : void |
Deletes (sets to
|
|
DeleteRange ( uint start, uint length ) : void |
Deletes (sets to
|
|
FromDenseArray ( object array, int length ) : SparseArray |
Creates a sparse array from the given dense array.
|
|
SparseArray ( ) : System | ||
this ( uint index ) : object |
Gets the total number of items that can be stored in this tree without having to increase the size of the tree.
|
메소드 | 설명 | |
---|---|---|
DeleteRange ( uint start, uint length, Node parentNode, Node node, int nodeIndex, int nodeDepth ) : void |
Deletes (sets to
|
|
FindOrCreateArray ( uint index, bool writeAccess ) : object[] | ||
GetValueNonCached ( uint index ) : object |
public CopyTo ( |
||
source | The sparse array to copy. | |
start | uint | The zero-based index at which copying begins. |
리턴 | void |
public CopyTo ( object source, uint start, int length ) : void | ||
source | object | The sparse array to copy. |
start | uint | The zero-based index at which copying begins. |
length | int | The number of elements to copy. |
리턴 | void |
public Delete ( uint index ) : void | ||
index | uint | The index of the array element to delete. |
리턴 | void |
public DeleteRange ( uint start, uint length ) : void | ||
start | uint | The index of the first array element to delete. |
length | uint | The number of array elements to delete. |
리턴 | void |
public static FromDenseArray ( object array, int length ) : SparseArray | ||
array | object | The array to copy items from. |
length | int | The number of items to copy. |
리턴 | SparseArray |