diff options
author | Colin Okay <okay@toyful.space> | 2020-10-31 10:50:34 -0500 |
---|---|---|
committer | Colin Okay <okay@toyful.space> | 2020-10-31 10:50:34 -0500 |
commit | 72c255bc1139ed1924bc544a4413c44a6441faed (patch) | |
tree | 427468cca517e1382835d3dba2b9bd0131d02f9f | |
parent | 0b3e4edf31383e50aefd8585f74c17306da28c6e (diff) |
removing superfluous utilities
-rw-r--r-- | gtwiwtg.lisp | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/gtwiwtg.lisp b/gtwiwtg.lisp index cb299bd..1f46c9a 100644 --- a/gtwiwtg.lisp +++ b/gtwiwtg.lisp @@ -321,24 +321,6 @@ The last generated value of the returned generator will be NIL. (from-input-stream (open file :element-type '(unsigned-byte 8)) (lambda (stream) (read-byte stream nil nil)))) -;;; Some utilities - -(defun make-queue () - (cons nil nil)) - -(defun enqueue (x q) - (push x (car q))) - -(defun dequeue (q) - (when (and (car q) (null (cdr q))) - (setf (cdr q) (reverse (car q)) - (car q) nil)) - (when (cdr q) (pop (cdr q)))) - -(defun queue-empty-p (q) - (and (null (car q)) - (null (cdr q)))) - ;;; Some assertion tests (defun all-different (things) |