¥
Size: a a a
¥
AZ
VL
¥
VL
PG
(defun and=> (init &rest fns)
(while (and init fns)
(setq init (funcall (pop fns) init)))
init)
PG
AP
A
¥
VL
VL
VL
(defun and=> (init &rest fns)
(while (and init fns)
(setq init (funcall (pop fns) init)))
init)
AP
¥
PG
PG
D