Created
October 18, 2017 22:42
-
-
Save halgari/16fa5c8eea4a73cfa81eee575dfe3d46 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
| ;;; | |
| (->> 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