[elixir-core:12082] [Proposal] Add support in Task.async for choosing :reply_demonitor over :demonitor

2025-06-05 Thread Ólafur Arason
I was trying to understand Process.alias/0 and I went down this rabbit hole. https://www.erlang.org/eeps/eep-0053 I feel like in a lot of uses of async and await people are just expecting to be sending the result of the command and nothing else. Even though the feature of sending a message throu

Re: [elixir-core:12081] [Proposal] Add List.prepend and List.append to easily pipe this operations

2025-06-05 Thread benjamin...@gmail.com
And we can’t forget about https://hexdocs.pm/elixir/List.html#insert_at/3 On Thursday, June 5, 2025 at 9:26:16 AM UTC+2 benjamin...@gmail.com wrote: > [el|list] is pipeable as well, and if you are working with Erlang > strings/binaries you can use > https://www.erlang.org/doc/apps/stdlib/string.

Re: [elixir-core:12080] [Proposal] Add List.prepend and List.append to easily pipe this operations

2025-06-05 Thread benjamin...@gmail.com
[el|list] is pipeable as well, and if you are working with Erlang strings/binaries you can use https://www.erlang.org/doc/apps/stdlib/string.html#pad/4 I think it’s important not to stare us self blind on a specific syntax. All the functions there are currently available helps highlighting that