diff options
author | Stuart Sierra <mail@stuartsierra.com> | 2009-03-17 22:21:35 +0000 |
---|---|---|
committer | Stuart Sierra <mail@stuartsierra.com> | 2009-03-17 22:21:35 +0000 |
commit | 832224974863b538b509715607c24a38a236554f (patch) | |
tree | dc6b3d10c75695d235f9b87e6e97c5d705709b7f | |
parent | 7c58716aecf43e7ba7f8157f8b7ee69ab1a1d75e (diff) |
seq_utils.clj: renamed "seek" to "find-first"
-rw-r--r-- | src/clojure/contrib/seq_utils.clj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/clojure/contrib/seq_utils.clj b/src/clojure/contrib/seq_utils.clj index ef821da1..01f260a9 100644 --- a/src/clojure/contrib/seq_utils.clj +++ b/src/clojure/contrib/seq_utils.clj @@ -161,7 +161,7 @@ (seq s)) -(defn seek +(defn find-first "Returns the first item of coll for which (pred item) returns logical true. Consumes sequences up to the first match, will consume the entire sequence and return nil if no match is found." |