vfsoraki
Example:
iex(1)> Enum.reduce([], fn x,y -> y end)
** (Enum.EmptyError) empty error
(elixir) lib/enum.ex:1754: Enum.reduce/2
I see nothing in docs about not being able to reduce an empty list.
I felt like this should return back [], but seems not.
Note that Enum.reduce/3 works fine, but I need Enum.reduce/2.
Am I doing it wrong?
PS. This is Elixir 1.5.1
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 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
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
Anyone here using Honeybadger?
My Honeybadger account is being overwhelmed with noise from some bots. Seeing a lot of
Bandit.HTTPError...
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
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
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
- #ai
- #elixirconf-us
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 7- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
ericmj
Enum.reduce/3works because it will just return the accumulator in the second argument. WithEnum.reduce/2the first element in the enumerable is used as the initial accumulator but if the enumerable is empty then what should be returned.We can’t return
[]because that does not make sense in many applications, for example if you want to sum a list:Why do you specifically need
Enum.reduce/2?vfsoraki
I needed to find a special value among a list.
The way it works is to consider the first element as winner, and then compare last winner with next element. At last, there will be winner inside accumulator.
This works like a basic algorithm of finding minimum/maximum inside a list.
I couldn’t find other functions that can iterate over a list, with an accumulator. There is only
Enum.reduce/2andEnum.reduce/3(I think?).I solved the problem by pattern matching empty list on my function, and returning the desired empty value.
But I’m curious to know what other options do I have? Using
Enum.reduce/3is not elegant:Where I should define
first_element_or_nil_valuein some other place.vfsoraki
And one more thing: I think this case should be mentioned in documentations, don’t you?
ericmj
Pattern matching is probably the best solution, you have to decide somewhere in your application what to do if you cant select a winner because there are no elements to select from. You can also do this:
I agree, we seem to have it for other functions, please open an issue or send a pull request.
peerreynders
My choice would have been:
Of course intercepting the empty case before it gets to the
reduceis more “efficient” (though by all accounts pattern matching is pretty fast) and ultimately creates the scenario thatreduce/2was designed for - i.e. it already has been established that the enumerable has at least one item (which doesn’t need to be evaluated by the function).vfsoraki
Thanks, but my condition could not be expressed through a simple
when. It required some computation and is currently a 5-line-pipe.Currently, pattern matching an empty list and returning a default value is a good and elegant solution.
If it were simpler, I would use
Enum.min_by/3orEnum.max_by/3, which are designed to do this.peerreynders
That wasn’t the point. Your statement was that a solution involving
Enum.reduce/3would be inelegant because you elected to use some conditional logic to select an appropriate initial value. I merely pointed out that it is possible with a multi clause anonymous function to simply swap out the supplied default value if and when the first element is processed.I think that you have found the solution that works best for your particular situation.
That being said I find that
Enum.reduce/2isn’t as generally useful as theEnum.reduce/3form - conceptuallyEnum.reduce/2is simply a specialized case:of
Enum.reduce/3which results in the following limitations:So even with your solution I’d still be tempted to use
Enum.reduce/3overEnum.reduce/2in the following fashion:simply because it is much clearer that the head of the list is being treated as an initial value and therefore may be processed differently to the remaining elements (depending on the logic in
iteratee). When “reducing”Enum.reduce/3should be the “goto”. When you know that you are dealing with a list you can use the equivalentList.foldl/3orList.foldr/3which processes the elements in the opposite order.There is no harm in forgetting that
Enum.reduce/2even exists - it’s a “convenience” form that isn’t all that convenient.