(skiplist-fix! skiplist)
This procedure “fixes” the skip list and thus exempts it to be deleted (freed) during garbage collection when the interpreter has no longer a reference to it.
The skip list is fixed.
unspecified (ok)
> (define sl (skiplist-create))
sl
> (skiplist-fix! sl)
ok
> (skiplist-fixed? sl)
#t
>