diff options
Diffstat (limited to 'src/clojure/contrib/fcase.clj')
-rw-r--r-- | src/clojure/contrib/fcase.clj | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/clojure/contrib/fcase.clj b/src/clojure/contrib/fcase.clj index 7c1aff51..31be58df 100644 --- a/src/clojure/contrib/fcase.clj +++ b/src/clojure/contrib/fcase.clj @@ -22,7 +22,17 @@ ;; inclusion of "condp" in clojure.core as of Clojure SVN rev. 1180. -(ns clojure.contrib.fcase) +(ns + #^{:author "Stuart Sierra", + :doc "This file defines a generic \"case\" macro called \"fcase\" which takes +the equality-testing function as an argument. It also defines a +traditional \"case\" macro that tests using \"=\" and variants that +test for regular expressions and class membership. + + +Note (December 23, 2008): This library has been supplanted by the +inclusion of \"condp\" in clojure.core as of Clojure SVN rev. 1180."} + clojure.contrib.fcase) (defmacro fcase |