9 lines
251 B
Common Lisp
9 lines
251 B
Common Lisp
;;;; cl-scopes/util/iter
|
|
|
|
;;;; iterators, queues, and other sequentially accessible stuff
|
|
;;;; producing items (objects) like: numbers, strings, symbols, lists, ...
|
|
|
|
(defpackage :scopes/util/iter
|
|
(:use :common-lisp))
|
|
|
|
(in-package :scopes/util/iter)
|