| 5919 | } |
| 5920 | |
| 5921 | ILibSparseArray ILibSparseArray_Move(ILibSparseArray sarray) |
| 5922 | { |
| 5923 | ILibSparseArray_Root *root = (ILibSparseArray_Root*)sarray; |
| 5924 | ILibSparseArray_Root *retVal = (ILibSparseArray_Root*)ILibSparseArray_CreateEx(sarray); |
| 5925 | memcpy(retVal->bucket, root->bucket, root->bucketSize * sizeof(ILibSparseArray_Node)); |
| 5926 | return(retVal); |
| 5927 | } |
| 5928 | void ILibSparseArray_ClearEx(ILibSparseArray sarray, ILibSparseArray_OnValue onClear, void *user) |
| 5929 | { |
| 5930 | ILibSparseArray_Root *root = (ILibSparseArray_Root*)sarray; |
no test coverage detected