Created
February 19, 2010 06:01
-
-
Save zaphar/308479 to your computer and use it in GitHub Desktop.
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
| (defn distinctp | |
| "Returns a lazy sequence of the elements of coll with duplicates removed" | |
| [pred coll] | |
| (let [step (fn step [xs seen] | |
| (lazy-seq | |
| ((fn [[f :as xs] seen] | |
| (when-let [s (seq xs)] | |
| (if (contains? seen (pred f)) | |
| (recur (rest s) seen) | |
| (cons f (step (rest s) (conj seen (pred f))))))) | |
| xs seen)))] | |
| (step coll #{}))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment