Skip to content

Instantly share code, notes, and snippets.

@viesti
Created December 23, 2015 11:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save viesti/f78e313be5be58329010 to your computer and use it in GitHub Desktop.
Save viesti/f78e313be5be58329010 to your computer and use it in GitHub Desktop.
Composing
user=> (->> (range 20) (drop 3) (filter odd?) (take 5))
(3 5 7 9 11)
user=> (into [] (comp (drop 3) (filter odd?) (take 5)) (range 20))
[3 5 7 9 11]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment