diff options
author | Tom Faulhaber <git_net@infolace.com> | 2009-05-04 00:28:26 +0000 |
---|---|---|
committer | Tom Faulhaber <git_net@infolace.com> | 2009-05-04 00:28:26 +0000 |
commit | 80ec9a2db42de7a527ef838acbae6dbab8f49cb3 (patch) | |
tree | 242fa54f8b7ba75ecb9b636f15005ee25edd8853 /src/clojure/contrib/fcase.clj | |
parent | 521f90e3e35cdb557519076ccc670c8cbcceaba9 (diff) |
More documentation headers
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 |