aratz-lasa
I have searched, but I have not found it. If it is a duplicated question I am so sorry.
I want to know how and when to format the returned values in a function. Because a lot of times, it is returned {:ok, value} and others just value . So, when should I use the status along the value?
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
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
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
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 have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
New
Hello,
I’m developing a online persistent chat system (what’s app) like using elixir/dynamodb/aws for a mobile app(flutter).
The diffic...
New
What approach to take when sending live updates to “random” users Hi! I have a question, I have a little chat app, and when I create a DM...
New
Other Trending Topics
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
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
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
- #elixir-ls
- #blog-post
- #ai
- #phoenix_html
- #elixirconf-us
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 6- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
tty
From laziness we treat
valueas{:ok, value}but ifvalueis an error code then it should be{:error, value}.A status should be descriptive and makes sense for the callee when pattern matching.
E.g. if a function spec is
{:ok, :connected} | {:ok, :received} | {:error, error_code}it can easily be changed to:connected | :received | {:error, error_code}without losing information.kokolegorille
Often functions ending with ! will return the value, or raise an error.
While those without ! at the end return {:ok, value} | {:error, reason}
aratz-lasa
Currently, I am working on a project. I will use it as an example to explain my point.
There is a function that returns a list if you pass a
struct. And a second function that creates astructif you pass a string. However the second function’s string parameter, must have a specific format, otherwise it fails.So, the return formats I use for each function are:
struct{:ok, struct}or{:error, reason}Is it a good choice?
tme_317
I’d say #2 is the good choice since it’s much more idiomatic and found throughout the ecosystem for functions that can fail. And as @kokolegorille said earlier naming the function with a bang (i.e.
func!()) if the function raises instead of returning an error tuple.That said occasionally I find something like
Integer.parse/2in the stdlib can return{42, ""}or:error. OrRepo.get/3from Ecto which returns%Struct{...}ornilif the query returns 0 rows. I guess the idea if there are no records it is not an error condition and should return the concept of nothing which isnilor[]for a list of nothing.tty
For your first function it takes a
but yes I do understand what you mean. What happens when it is given an empty list ? Will the function fail or do you expect passing back error codes ?
structand returns alist()aratz-lasa
The first function receives an
structand returns alist()as you said. So, it is never “given a list”, and it is hard (almost impossible to fail?).So, I just return the
list()without any status (:ok,:error).However, the second function receives a
stringand returns astruct. But this can fail or do receive wrong values. That is why, the second function returns a status along with thestruct.