Skip to content

Instantly share code, notes, and snippets.

@borkdude
Created August 21, 2014 19:40
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 borkdude/e5f77b9b80a523d62d55 to your computer and use it in GitHub Desktop.
Save borkdude/e5f77b9b80a523d62d55 to your computer and use it in GitHub Desktop.
user> ((comp #(map inc %) #(filter odd? %)) (range 10))
(2 4 6 8 10)
user> (sequence (comp (map inc) (filter odd?)) (range 10))
(1 3 5 7 9)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment