blob: 180a1e3b087a4b5cc72d5dec76fecb773f8d3984 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
(defmacro inc (x &optional (val 1))
`(setf ,x (+ ,val ,x)))
;; For system arguments
(defmacro when-option ((options opt) &body body)
`(let ((it (getf ,options ,opt)))
(when it
,@body)))
(defun max-length (lists)
(reduce (lambda (a x) (max a x)) (mapcar #'length lists)))
|