Set the value at this slot in the array.
Sparse_Set(array, 1, 100);
Get the value at this slot in the array, or default
if it isn't found.
new value = Sparse_Get(array, 0);
printf("%d, %d", value != cellmin, value);
new value = Sparse_Get(array, 4, -1);
printf("%d, %d", value != -1, value);
Delete this slot in the array.
Sparse_UnSet(array, 2);
Try get the value at this slot in the array, or return false
if it doesn't exist.
new value;
if (Sparse_TryGet(array, 3, value))
{
printf("%d", value);
}
Check if this slot exists in the array.
if (Sparse_Contains(array, 5))
{
printf("yes");
}
Get the value
at index
, and return true
if the slot existed. If a new value is given this is
written to the slot instead, if no new value is given, the slot is deleted.
new value;
if (Sparse_Exchange(array, 6, value, 99))
{
printf("%d", value);
}
ASSERT(Sparse_Get(array, 6) == 99);
new value;
if (Sparse_Exchange(array, 6, value))
{
printf("%d", value);
}
ASSERT(!Sparse_Contains(array, 6));