yourpalal
When using with/1 to handle a bunch of matches and things that return {:ok, _} or :error or {:error, _} I often need to differentiate between errors, and I’ll wrap the individual matches in tuples, like this:
with(
{{:ok, shoes}, _} <- {get_shoes(outfit), :shoes},
{{:ok, shirt}, _} <- {get_shirt(outfit), :shirt},
{true, _} <- {shoes_match_shirt?(shoes, shirt), :matching}
) do
{:ok, "service allowed"}
else
{error, :shoes} ->
{:error, "you forgot your shoes!"}
_ ->
:error
end
Mainly, I’m just curious how other people are handling things like this! What are you doing when you need to handle multiple error cases from with/1 ? One obvious solution is to give up on with/1 and use if or regular case statements or something like that.
Second, I’m open to any suggestions/criticism of the above code style.
Trending in Questions
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
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
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
Anyone here using Honeybadger?
My Honeybadger account is being overwhelmed with noise from some bots. Seeing a lot of
Bandit.HTTPError...
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
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
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
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
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
There are three potential reasons for members of this forum to have a look at https://vutuv.de
You are tired or annoyed of LinkedIn.
Yo...
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
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #blog-post
- #elixir-ls
- #elixirconf-us
- #ai
- #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)
idi527
If you care about specific errors for your conditions, you might be better off with
case.You can also try reversing the logic for the
withexpression thus making the successful path the “exception”. Might not be applicable here, though.hlx
I think you’re better of returning a more meaningful error from
get_shoes/1Example
peerreynders
The idiom is
{:ok, value}, {:error, reason}So the pattern match should focus on the contents of
reason.For example:
Process.monitor/1will result in a general message of the format:{:DOWN, ref, :process, object, reason}where
reasoncan take on values like:normal,:noprocor:noconnection, i.e. values that are highly distinct and imply their context. So it’s a good idea to follow the same practice with{:error, reason}tuples.yourpalal
Lots of good ideas from people
I should mention that get_shoes/get_shirt are standins for code from the std. lib, or ecto or plug or whatever. They might be code I own, or maybe not.
The idea of improving the error messages is good, and in some cases could be done by changing what functions are used, too, eg.
Map.get(params, :shoes, {:error, :no_shoes})instead ofMap.fetch(params, :shoes)yourpalal
Yes, that’s a good point. One of the things I like about
with/1is that it avoids nesting, but particularly if there are only one or two errors to handle, case could be the way to go (or if!).withalso lets me kind of replicate a pattern I like in imperative languages (eg. ruby):This pattern of returning/raising as soon as possible also helps avoid a bunch of indentation, and means the function generally stays on the “happy path”.
7stud
What does the left arrow do there? And where is the documentation for
with/1?peerreynders
with/1The precedent for the left arrow probably comes from
for/1; see Pronouncing `<-` - #4 by peerreynders.7stud
Hmmm…I looked in the Kernel docs here:
and there is no
with/1. Edit: Ah, I see. It’s listed under Kernel.SpecialForms.And for anyone that cares, the
<-operator is discussed on p. 39 of Programming Elixir 1.6 in the section titled “with and Pattern Matching”.idi527
Although not normally used for control flow, you can also throw and raise errors in elixir.
hlx
If you ever need more power, you should take a look at GitHub - Nebo15/sage: A dependency-free tool to run distributed transactions in Elixir, inspired by Sagas pattern. · GitHub (Sagas pattern)