wanton7
I’m trying to look at the docs but I couldn’t find a function that would return element with its index. Is there such a function for lists that doesn’t involve creating a new list? I want to do modify the the element if it exists and then use List.replace_at to replace it. But because I don’t have the index, I first have use Enum.find_index to get the index and then if it’s not nil, then I have to use Enum.at to get the element itself.
Edit: added code
defp edit_if_exists(elements, id, fun) do
case elements |> Enum.find_index(&(&1.id == id)) do
nil ->
elements
idx ->
element = elements |> Enum.at(idx); # Want to know if I can some how avoid this
elements |> List.replace_at(idx, fun.(element))
end
end
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
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
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
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
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
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
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
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Aludel - LLM Evaluation Workbench
Aludel is an embeddable Phoenix LiveView dashboard for evaluating and comparing LLM prompts across mult...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #ai
- #elixirconf-us
- #blog-post
- #elixir-ls
- #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)
csadewa
Combination of
Enum.with_indexwithEnum.findcould solve this. likewanton7
Enum.with_indexcreates a new listcsadewa
List.replace_atalso create a new list, elixir being immutable will always return new data structure for modification.Alternatively, if you want to focus on replace an element without considering using index, you could just use
Enum.map, and change elem if it’s match your search criteriawanton7
I don’t care about
List.replace_atcreating a new list I only care about that finding the element doesn’t create a new list. That why I asked.LostKobrakai
Can you explain why you need to work with indexes on a list? Often when you need indexed access a list in not the best datatype to use.
csadewa
you could change
Enum.with_indextoStream.with_indexwhich wouldn’t make an intermediary list, but at this moment i don’t really understand what you are trying to achieve. (i thought it was replacing modifying an element in list before)wanton7
I want to edit element in a list if it exists and not create new list if it doesn’t. Maybe there is a better way?
csadewa
List in elixir is immutable, changing a list data structure will always create a new list in it.
Maybe list is not the correct data structure for you, if you have special requirement like high performance problem or shared data between process, there’s alternative like :array (array — OTP 29.0.2 (stdlib 8.0.1)) which give mutable array in elixir.
wanton7
Of course they are immutable whole language is immutable. I think you have misunderstood what I originally wrote. Like I said I don’t care about that editing a list is creating a new list it’s given. I care about that finding an element is creating a new list.
I can use
Enum.find_indexandEnum.atif element was found and that doesn’t create a new list. But I wanted to know if there is some function already in Enum or List or somewhere else doesn’t create a new list and returns both element and its index so I could do it in one call instead of two.LostKobrakai
Enum.reduce_whilecan do that. That’s whatfind_indexis based on.