Sebb
I can do:
if true, do: :foo, else: :bar
and:
if true do
:foo
else
:bar
end
And I can do:
for i <- 0..3, do: {i, i+i}, into: %{}
but not:
for i <- 0..3 do
{i, i+i}
into
%{}
end
![]()
why is that?
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app?
Looking for hints regarding:
Addi...
New
Kia ora,
We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
New
I’ve followed the Phoenix LiveView file upload code here Uploads — Phoenix LiveView v1.0.0-rc.7 and so far everything works just fine wit...
New
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #phoenix_html
- #ai
- #iex
- #graphql
- #elixirconf-us
- #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)
hauleth
Because
elsegot special treatment to ease user experience. This sugar is not available for any other atom outside the small set of predefined ones (else,rescue,catch, andafter).Sebb
So I can’t use
into,uniq,reducein afor ... endblock?josevalim
You can, you have to pass them before the do.
chungwong
and:
are different, although they look similar.
The first form is actually a
ifmacro accepting two arguments.And to make the second form works, we need a
intomacro which I don’t think we have it.hauleth
That is not true. Both are exactly the same thing for the compiler:
lud
Yes they are the same. A
doblock after a call adds the[do: ...]argument to the function/macro call on the left.So if you call this (notice the parentheses for the
ifcall)The compiler kind of rewrites it to
if(a == 1, [do: :ok])This works for functions too:
This will output the following:
But as
myfun/2is a function and not a macro, the block is evaluated before being passed to the function, hence you see[do: 3], whereas with macros the quoted block is passed. This syntactic sugar is then less useful for functions.The
formacro is special, because if you passinto: %{}, do: stuff(), thedoandintoare in the same keyword list ; if you passinto: %{}and then ado endblock, the compiler will add another argument to thefor()call, containing just thedoblock:I guess that is why
foris defined inKernel.SpecialFormsas an error because it is handled at the compiler level.hauleth
Well, no. It is still consistent behaviour among all other calls:
There are 2 reasons why
foris special form and not “regular” macro:<<a <- binary>>syntax need special handlingSo all of the above forces the Elixir to treat
foras a “special thing” within parser itself.lud
I don’t understand to what you say “no”.
I mean in your example it calls two different
foofunctions. Theforconstruct handles that in a special way, there are not several definitions forforto my knowledge in the Elixir code.hauleth
As I said, it is literally impossible to define
forin Elixir. I meant thatdo: 10anddo … endaren’t really treated differently just forfor, but the same rules applies to all calls.foris special form not because ofdobut because eachx <- yis separate argument, sofor i <- 1..10, do: iis 2-ary function andfor i <- 1..10, j <- 1..10, do: i + jis 3-ary function. So eitherforwould need to have N different heads and just fail in case if someone would like to use more than that, then it would fail (see older Rust compilers to see that problem, thereDebugis defined only up to 32-ary tuples, as there is no variadic generics). Due that problemforandwithmust be defined as special forms, because they require parser magic to be then expanded properly.lud
Ok so it is not defined as a special form just for the arity problem, but otherwise it is just what I said, basically it is a special form because it requires special treatment at the compiler level.