Skip to content

Instantly share code, notes, and snippets.

@MayDaniel
Created November 27, 2010 18:16
Show Gist options
  • Select an option

  • Save MayDaniel/718135 to your computer and use it in GitHub Desktop.

Select an option

Save MayDaniel/718135 to your computer and use it in GitHub Desktop.
(defn partition-when [pred coll]
(lazy-seq
(when-let [s (seq coll)]
(let [[head tail] (split-with pred s)]
(cons head (partition-when (complement pred) tail))))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment