From 81f246cca5924dfe93aa19ac0ca8d8824e3d9210 Mon Sep 17 00:00:00 2001 From: Colin Okay Date: Sun, 10 Jul 2022 12:55:49 -0500 Subject: [add] defun-case --- hyperquirks.lisp | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'hyperquirks.lisp') diff --git a/hyperquirks.lisp b/hyperquirks.lisp index b399519..2c7de1a 100644 --- a/hyperquirks.lisp +++ b/hyperquirks.lisp @@ -181,6 +181,27 @@ And would return +(defmacro defun-case (name &rest clauses) + "Clauses look like (VARLIST . BODY) + +E.g. + +(defun-case foobar + (() 10) + ((x y) (+ x y)) + ((foo) (* foo 2)) + ((a b c d) (list a b c d)))" + (let* ((rest-args + (gensym "variable-pattern-")) + (clauses + (loop for (arglist . body) in clauses + collect `(,(length arglist) + (destructuring-bind ,arglist ,rest-args + ,@body))))) + `(defun ,name (&rest ,rest-args) + (case (length ,rest-args) + ,@clauses)))) + ;;; LIST FUNCTIONS (defun group (n xs &optional default) -- cgit v1.2.3