diff --git a/sequences.lisp b/sequences.lisp index 920f79977e3e498059a921f52cee2ab226fe92dd..e28048e6fce30c5f4e38ac635aa9d4fa38b1ddb1 100644 --- a/sequences.lisp +++ b/sequences.lisp @@ -155,6 +155,12 @@ that are not lists." `(or proper-list (and (not list) sequence))) +(eval-when (:compile-toplevel :load-toplevel :execute) + (when (and (find-package '#:sequence) + (find-symbol (string '#:emptyp) '#:sequence)) + (pushnew 'sequence-emptyp *features*))) + +#-alexandria::sequence-emptyp (defun emptyp (sequence) "Returns true if SEQUENCE is an empty sequence. Signals an error if SEQUENCE is not a sequence." @@ -162,6 +168,14 @@ is not a sequence." (list (null sequence)) (sequence (zerop (length sequence))))) +#+alexandria::sequence-emptyp +(declaim (ftype (function (sequence) (values boolean &optional)) emptyp)) +#+alexandria::sequence-emptyp +(setf (symbol-function 'emptyp) (symbol-function 'sequence:emptyp)) +#+alexandria::sequence-emptyp +(define-compiler-macro emptyp (sequence) + `(sequence:emptyp ,sequence)) + (defun length= (&rest sequences) "Takes any number of sequences or integers in any order. Returns true iff the length of all the sequences and the integers are equal. Hint: there's a