(skiplist-fixed? skiplist)
This predicate returns #t if the skip list is “fixed” and thus exempted from garbage collection when the interpreter has no reference to it, otherwise #f.
#t or #f
> (define sl (skiplist-create))
sl
> (skiplist-fix! sl)
ok
> (skiplist-fixed? sl)
#t
>