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
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
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
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