queue-fixed?

Synopsis

(queue-fixed? queue)

Parameters

  • queue

Description

This predicate returns #t if the queue 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 q (queue-create))
sl
> (queue-fix! q)
ok
> (queue-fixed? q)
#t
>