This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns fn-pre-post | |
(:refer-clojure :exclude (defn fn defn-))) | |
(clojure.core/defn- insert-arg | |
"Insert arg in the second position of the form cond." | |
[arg cond] | |
(cons (first cond) (cons arg (rest cond)))) | |
(clojure.core/defn- parse-params | |
"Parse a parameter vector, possibly containing nested vectors for |