JsonKody
This is highly subjective but in my mind Haskell and Ruby/Rust has one of the most beautiful lambda syntax
\a b → a + b
and
|a, b| a + b
so if Elixir syntax is mostly form Ruby why they ditched one of the most beautiful things on Ruby and goes with this abomination monster:
&(&1 + &2)
??
![]()
PS: Please note, my intent is not to criticize; I’m genuinely interested in understanding the design choices behind this syntax. ![]()
edit/note: |a, b| a + b is just Rust syntax, I thought that it’s also Ruby, but while Ruby is similar it wraps it in labda { ... }
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself.
My main conc...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #ai
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming











Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
gpopides
I dont know the answer to your question but just a small note, this is not the lambda syntax.
The lambda syntax would be
fn a, b -> a + b endWhat you mention is the capture operator which is similar to method reference in java/kotlin
JsonKody
Yep, I know this syntax, and it’s okay—neither bad nor awesome. I was just curious about the other one and whether there’s a particular reason Elixir didn’t adopt the Ruby syntax.
Oh, my bad.
sodapopcan
Ruby now has
collection.map { _1 }so clearly they were a little jealous of ElixirBut ya, highly subjective.
I actually prefer Elixir’s since you don’t have to invent a variable name, even if just one letter. It makes refactoring that much more smooth.
LostKobrakai
Would the ruby syntax support multiple function heads? I wouldn‘t expect there‘s a clear way on how that would be handled.
JsonKody
Oh, I didn’t know about this feature. Sorry for my ignorance.
Now it really make sense.
JsonKody
Thanks for the explanation. I’m just starting to learn Elixir, so I’m still a beginner. Given this information, I have to admit that the lambda syntax in Elixir does make a lot of sense for its use-cases.
hauleth
Ruby lambda syntax is
lambda { |a, b| a + b }which is far from pretty IMHO. You probably meant block syntax, but that is slightly different from lambdas, as you can have only one block, with that fancy pants syntax, per function call. So it is not fully apples to apples.smathy
Most people use the shorthand
-> a, b { a + b }syntax, which I think is quite pretty.JsonKody
True, sorry I have bad info - thought that Rust get it from Ruby but that
labda { ... }wrap is <not so good>JsonKody
That’s interesting… I’ve never seen that before. It’s definitely an improvement!