skiplist-fixed?

Synopsis

(skiplist-fixed? skiplist)

Parameters

  • skiplist

Description

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.

Side Effects

Return Value

#t or #f

Example

> (define sl (skiplist-create))
sl
> (skiplist-fix! sl)
ok
> (skiplist-fixed? sl)
#t
>