Skip to content

Instantly share code, notes, and snippets.

@halgari
Created October 18, 2017 22:42
Show Gist options
  • Select an option

  • Save halgari/16fa5c8eea4a73cfa81eee575dfe3d46 to your computer and use it in GitHub Desktop.

Select an option

Save halgari/16fa5c8eea4a73cfa81eee575dfe3d46 to your computer and use it in GitHub Desktop.
;;;
(->> actors
(map (partial get-data server-pool))
(filter #(> (:age %) 42))
(map :name)
set)
(into #{}
(comp (map (partial get-data server-pool))
(filter #(> (:age %) 42))
(map :name))
actors)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment