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 +++++++++++++++++++++ package.lisp | 1 + 2 files changed, 22 insertions(+) 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) diff --git a/package.lisp b/package.lisp index dff7a7e..b59340f 100644 --- a/package.lisp +++ b/package.lisp @@ -10,5 +10,6 @@ #:>> #:imperative-cond #:with-plist + #:defun-case #:group #:tabulate)) -- cgit v1.2.3