[elixir-core:6295] Re: Suggestion: Map.deep_merge

2016-09-06 Thread OvermindDL1
I had made my own a few times, though rare, it could be useful. Unsure about it in core but in a library definitely. On Tuesday, September 6, 2016 at 9:20:23 AM UTC-6, Tobias Pfeiffer wrote: > > Hi everyone, > > in Elixir we work a lot with maps (or at least I do :D). And we know and > love Ma

Re: [elixir-core:6292] IEx historial

2016-09-06 Thread Mike Evans
Hi, try the first link for history and the second link for config'ing IEx in general. hth :) http://nithinbekal.com/posts/elixir-shell-history/ http://elixir-lang.org/docs/stable/iex/IEx.html > On Sep 2, 2016, at 2:29 PM, michel perez wrote: > > can iex remember the past commands from other

Re: [elixir-core:6292] Re: IEx historial

2016-09-06 Thread Bryan Joseph
I have also successfully used that in the past. I think the only reason I stopped was when I updated Erlang versions and never bothered to reinstall it. I agree that having something first class would be better. On Sun, Sep 4, 2016, 7:10 AM Ben Wilson wrote: > I do think a first class solution w

[elixir-core:6291] Suggestion: Map.deep_merge

2016-09-06 Thread Tobias Pfeiffer
Hi everyone, in Elixir we work a lot with maps (or at least I do :D). And we know and love Map.merge. However given a map like %{a: %{b: 1}} and we want to merge it with a map like %{a: %{c: 2}} then the :a key will be totally overridden with whatever is supplied in the other map. However, for in