alexiss
In my practice I often write something like this:
with value when not is_nil(value) <- some_fun() do
...
end
What about something like shortcut for this frequently used case?
with non_nil(value) <- some_fun() do
...
end
Unfortunately, I can’t find any way to do it via macroses because as I understand when is a some kind of special form that is handled by compiler.
Trending in Discussions
As the title says, please share what you’ve been up to with Elixir. Whether that’s been learning it, looking into it, making stuff with i...
New
The obligatory hello world thread!
Who are you and where are you from? :stuck_out_tongue:
New
@chrismccord : I just saw the Extract AGENTS.md from Phoenix.new into phx.new generator commit to the phoenix project.
My initial shotgu...
New
I was working on an Ecto migration and I needed a timestamp. So, for the nth time, I looked up the different data types for timestamps, a...
New
Fly’s CEO posted this recently - Turn And Face The Strange · The Fly Blog
It says that Fly is going all-in on sprites, which is a worry ...
New
We’re evaluating API mocking tools for OpenAPI-based projects and would love to hear what other teams are using.
We’re particularly inte...
New
Is there a word for the ~> symbol used in Version strings?
Do you also just call it a Squiggle Arrow™ ?!
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
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
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
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
Chat & Discussions>Discussions
Latest on Elixir Forum
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
- #iex
- #graphql
- #ai
- #genstage
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #security
- #hex










First 6 of 6 Posts
OvermindDL1
Yeah, that’s because of how
withis implemented, it really should have been a macro itself so it doesn’t have these weird and surprisingly inconsistent edge cases.In short, no, I’ve not found anyway to enhance
withlike that without just flat-out replacing it, which is entirely an option, there are some good libraries that already have.LostKobrakai
It’s exactly the same as it is with
caseas well as in function heads:my_function(not is_nil(x), y)is invalid. I really don’t get what you find so inconsistent withwith?OvermindDL1
It’s expanding into the proper AST node for both
caseandwith, so it should work, it is only because they are special forms not coded to match the rest of the language that they are not. It would obviously not work in a function head because it doesn’t go into a single AST node but rather would have to be split out into two calls instead (I.E.def my_function(x when not is_nil(x), y)makes no sense, butcase ... do x when not is_nil(x) -> ... enddoes make sense, and yet you cannot replace it with a macro ofcase ... do non_nil(x) -> ... endeven ifnon_nil(x)is just as trivial asdefmacro non_nil(v), do: quote(do: unquote(v) when not is_nil(unquote(v)))even though it is AST-identical, thus inconsistent, and even more so withwithbecause it is a weird magical multi-arity function along withforunlike everything else in the language).LostKobrakai
I mean I can see that having everything as proper macros might be desirable, but all of them work the same. You need to bind the value to a variable before you can use the variable in a guard clause.
I’d consider that inconsistent with how the rest of the language works and I’d consider how it works with function headers here as well. Where is the
valuedefined that’s been used withnon_nil/1? Given that guard clauses in function heads don’t work well with arbitrary macros I also don’t see it as an outlyer that pattern matches infor,case,withwould work vastly different.alexiss
Just for fun..
After looking into sources I’ve found that
withuses:elixir_utils.extract_guardsto process guards. So potentially it’s possible to implement something like “inline guards” (may be and for functions too) if rewrite this code:with
thats gives somethink like this:
Don’t take this comment seriously )
Anyway, @OvermindDL1 - thanks for a quick reply
OvermindDL1
It’s defined via the
valuein that expression, which would be more clear perhaps without the parenthesis:And yet it is not? You can define a value just fine via a macro and indeed that is done in many cases in many libraries. As well as you didn’t have to specify a value to bind to, with my above macro you could just as well do:
That is why I often have default values in my macro’s for such bindings, so either method works just fine.
They work just fine if the macro is written to only return guard-safe calls:
Actually it is on purpose that they don’t support macro’s in those positions, so sadly it won’t be fixed. However, you can of course make your own library to replace those functions with ones better suited for your purpose. ^.^
I’m actually a fan of having a macro that operates on an entire
defmoduledeclaration to mutate it en-masse to ‘fix-up’ inconsistencies like that (among other things).