Skip to content

Instantly share code, notes, and snippets.

@pragtobgists
Created November 10, 2016 19:14
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 pragtobgists/13210711d3cb7416173ded2c2a4f6d75 to your computer and use it in GitHub Desktop.
Save pragtobgists/13210711d3cb7416173ded2c2a4f6d75 to your computer and use it in GitHub Desktop.
deep_merge in action
DeepMerge.deep_merge(%{a: 1, b: [x: 10, y: 9]}, %{b: [y: 20, z: 30], c: 4})
# => %{a: 1, b: [x: 10, y: 20, z: 30], c: 4}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment