diff options
author | Stuart Sierra <mail@stuartsierra.com> | 2008-12-23 16:34:03 +0000 |
---|---|---|
committer | Stuart Sierra <mail@stuartsierra.com> | 2008-12-23 16:34:03 +0000 |
commit | b6fce0ce57fe3794057a52bcd1f24be00a24384e (patch) | |
tree | 51d99f32d8a588a53ba77e2fb6bb7b8a8d57e09e /src/clojure/contrib/fcase.clj | |
parent | 597c8abc97cd1a059b03c49a999db7908a5011a2 (diff) |
fcase.clj: added note that clojure.core/condp now supplants fcase
Diffstat (limited to 'src/clojure/contrib/fcase.clj')
-rw-r--r-- | src/clojure/contrib/fcase.clj | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/clojure/contrib/fcase.clj b/src/clojure/contrib/fcase.clj index f0ab088d..7c1aff51 100644 --- a/src/clojure/contrib/fcase.clj +++ b/src/clojure/contrib/fcase.clj @@ -1,6 +1,6 @@ ;;; fcase.clj -- simple variants of "case" for Clojure -;; by Stuart Sierra <mail@stuartsierra.com> +;; by Stuart Sierra, http://stuartsierra.com/ ;; April 7, 2008 ;; Copyright (c) Stuart Sierra, 2008. All rights reserved. The use @@ -18,6 +18,10 @@ ;; 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. + + (ns clojure.contrib.fcase) |