diff options
Diffstat (limited to 'util.lisp')
-rw-r--r-- | util.lisp | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -6,3 +6,6 @@ `(let ((it (getf ,options ,opt))) (when it ,@body))) + +(defun max-length (lists) + (reduce (lambda (a x) (max a x)) (mapcar #'length lists))) |