ijverig
Using guards like this works fine:
iex(1)> defmodule M do
...(1)> def update_position({pos, max_pos}) when pos < max_pos, do: pos + 1
...(1)> end
{:module, M, …
iex(2)> M.update_position({3,4})
4
iex(3)> M.update_position({3,3})
** (FunctionClauseError) no function clause matching in M.update_position/1
The following arguments were given to M.update_position/1:
# 1
{3, 3}
iex:2: M.update_position/1
But when extracting it into a defguard, the compiler gives a syntax error:
iex(1)> defmodule M2 do
...(1)> defguard is_valid_position({pos, max_pos}) when pos < max_pos
...(1)> end
** (ArgumentError) invalid syntax in defguard is_valid_position({pos, max_pos})
(elixir) lib/kernel.ex:4623: anonymous fn/2 in Kernel.validate_variable_only_args!/2
(elixir) lib/enum.ex:737: Enum."-each/2-lists^foreach/1-0-"/2
(elixir) lib/enum.ex:737: Enum.each/2
(elixir) lib/kernel.ex:4592: Kernel.define_guard/3
(elixir) expanding macro: Kernel.defguard/1
iex:2: M2 (module)
Anyone has a clue of the problem here?
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
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
Hi all, I wanted to ask how the community is dealing with post-release steps.
Today we have Ecto migrations, which make sure that the db...
New
Hello,
I have an Elixir backend that implements a custom protocol over TCP. I want to load test the backend and assess the performance o...
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
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
I just stumbled on a newly redesigned elixir-lang.org. :tada: It looks like @Software_Mansion did the work, and I think it is generally a...
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
- #iex
- #graphql
- #ai
- #genstage
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #security
- #hex










First 10 of 10 Posts
NobbZ
You can not pattern match in a defguard.
ijverig
As @NobbZ mentioned, the problem is that there’s no pattern matching inside a
defguardheader.I didn’t find good documentation on this, though. Only some discussion prior to implementing
defguardin v1.6:[1] Provide defguard · Issue #2469 · elixir-lang/elixir · GitHub
[2] Provide defguard · Issue #2469 · elixir-lang/elixir · GitHub
[3] Redirecting to Google Groups
[4] Defguard - experimenting with a structural matching alternative to Kernel.defguard
Follow up question: if I define a guard as a macro (according to the docs) then I can pattern match. However isn’t
defguarda syntactic sugar for this macro?NobbZ
Using a macro you can only pattern match on the AST, not on arbitrary runtime values.
ijverig
But I was able to implement the original idea with a macro:
This is because I’m pattern matching on the AST, not runtime values? Like: I’m pattern matching “structures” (like
{ }) of the language and types, not runtime values?If it works on this macro, shouldn’t it work in the
defguardexpansion? Isn’t it just a macro as well?NobbZ
You are matching on the AST of
{pos, max_pos}, it would not work if you definedM.update_position/1like this:Because
phas a different AST than the tuple which you specified literally before.To be honest, the best way were probably to make this clear as “Klosbrühe” and
defguard is_valid_position(pos, max_pos) when pos < max_posordefmacro is_valid_position(pos, max_pos) do quote(do: unquote(pos) < unquote(max_pos)) end(maybe repair syntax of them).Eiji
@ijverig: You can solve this by:
NobbZ
Yeah that would work, but I prefer the 2 arity version as it makes no assumption about how pos and max_pos are related together.
In any case I’d add
is_integer/1,is_float/1oris_number/1to the guard, it will safe a lot of time spent on debugging when the first time something not numeric slips into the tuple…ijverig
@NobbZ
Yes, I understand.
This was just an example, my need is more something like
is_valid_position({x, y}, {max_x, max_y})so I could callis_valid_position(pos, max_pos). IMHO changing that tois_valid_position(x, y, max_x, max_y)is a bit cumbersome on the readability.But seems to be the way to go
axelson
@ijverig while I haven’t used it you may like the library Expat by @vic
Expat - composable, reusable pattern matching
OvermindDL1
Yeah this is a fantastic set, it essentially absorbed my defguard experiment (that would have worked as OP wanted if it was part of Elixir) but in a way that is stable.