Skip to content

Instantly share code, notes, and snippets.

@johnwesonga
Last active April 28, 2020 05:57
Show Gist options
  • Save johnwesonga/48b9bff949446b8e89e87f1b7751bd96 to your computer and use it in GitHub Desktop.
Save johnwesonga/48b9bff949446b8e89e87f1b7751bd96 to your computer and use it in GitHub Desktop.
Remove map from vector of maps
(def mm '[{:a 1, :b 2} {:a 2, :b 3}])
(map #(dissoc % :a) mm)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment