Created
March 20, 2019 16:49
-
-
Save tonyc/dc70fe54bd6d75ccc3fb7697f2224f3a 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
# This works | |
final_zip_codes = | |
zip_codes | |
|> Enum.map(& &1[:id]) | |
|> Enum.sort() | |
# This also works | |
final_zip_codes = | |
zip_codes | |
|> Enum.map(&(&1[:id])) | |
|> Enum.sort() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment