Next: Stores, Previous: Strings, Up: API Reference [Contents][Index]
Grip module that provides FIFO queue - list based - syntaxes, which you may load using:
(use-modules (grip queue))
push
push!
push*
push*!
pop
pop!
pop*
pop*!
Return a list, defined as (cons item lst)
.
push!
mutates lst so it contains the returned list.
Return a list, defined as (cons* i1 i2 i3 ... lst)
.
push*!
mutates lst so it contains the returned list.
Return a list, defined as (cdr lst)
.
pop!
mutates lst so it contains the returned list.
Return a list, defined as (drop lst n-item)
.
pop*!
mutates lst so it contains the returned list.