make-item-stream type pattern items &rest keywords [Function]

Creates an item stream of the specified type and pattern. Items is the list of items. keywords are item stream macro options specified using their Lisp keyword form.

Example:

;;; same as (notes c4 d e f g in heap for 10)

? (setf x (make-item-stream 'notes 'heap '(c4 d e f g) :for 10))
#<HEAP-NOTE-STREAM 133074501>

? (read-items x)
(D4 G4 F4 E4 C4 F4 C4 D4 E4 G4)

See Also:

Item Streams


Last Modified: 5-Mar-1998