wanton7

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

Showing Posts 1 to 10

csadewa

csadewa

Combination of Enum.with_index with Enum.find could solve this. like

[:a,:b,:c] |> Enum.with_index() |> Enum.find(fn {char, index} -> char == :b end)

{:b, 1}
wanton7

wanton7 OP

Enum.with_index creates a new list

csadewa

csadewa

List.replace_at also 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 criteria

wanton7

wanton7 OP

I don’t care about List.replace_at creating a new list I only care about that finding the element doesn’t create a new list. That why I asked.

Is there such a function for lists that doesn’t involve creating a new list?

LostKobrakai

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

csadewa

you could change Enum.with_index to Stream.with_index which 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

wanton7 OP

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

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

wanton7 OP

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_index and Enum.at if 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

LostKobrakai

Enum.reduce_while can do that. That’s what find_index is based on.

Where Next? Top

Trending in Questions Top

RSP87
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
nseaSeb
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
RemyXRenard
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
velrest
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
samoloth
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
FlyingNoodle
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
brecabral
Documentation While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New

Other Trending Topics Top

mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
marciok
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
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Dmk
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
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
webofbits
Aludel - LLM Evaluation Workbench Aludel is an embeddable Phoenix LiveView dashboard for evaluating and comparing LLM prompts across mult...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews