shahryarjb

shahryarjb

Hello, I have a list and want to move it to map or tuple or I have a 3 map records of Repo.all, then after editing this record I want to save these to a map

[a, b, c] |> Enum.map(fn item -> item + 1 end)

now I need to save them to a map like

[a, b, c] |> Enum.map(fn item -> item + 1 end) |> ADD_TO_MAP_OR_TUPLE

how can I do this?

Showing Posts 1 to 9

NobbZ

NobbZ

What do you want to look the result like?

Perhaps take a look at List.to_tuple/1.

mudasobwa

mudasobwa

Creator of Cure

To produce a map, you might use Enum.into/3 directly:

[:a, :b, :c] |> Enum.into(%{}, fn item -> {item, to_string(item)} end)
#⇒ %{a: "a", b: "b", c: "c"}
shahryarjb

shahryarjb OP

This is what I need, but it converts to a list, but I need tuple too, is there a cod for tuple ?

mudasobwa

mudasobwa

Creator of Cure

I am lost. It does not convert anything to the list. Please clarify what output do you expect to receive.

shahryarjb

shahryarjb OP

Im sorry I made a mistake that output is a map like %{a: "a", b: "b", c: "c"} now I need output that be a tuple like this: {a, b, c}

mudasobwa

mudasobwa

Creator of Cure

Please refer to the answer by @NobbZ then. |> List.to_tuple() after map would do.

shahryarjb

shahryarjb OP

it doesn’t work I tested it,

%{a: "a", b: "b", c: "c"} |> List.to_tuple
** (ArgumentError) argument error
    :erlang.list_to_tuple(%{a: "a", b: "b", c: "c"})

if there is no module I think I should delete keys and move the value to new tuple.
or I can convert map to list and list to tuple

mudasobwa

mudasobwa

Creator of Cure

You are trying to convert map to tuple with List.to_tuple/1. It obviously does not work. It works on your initial mapped data:

shahryarjb

shahryarjb OP

Thank you very much, I wrote many code today I think I need to go bed :smile:

— All posts loaded —

Where Next? Top

Trending in Questions Top

Blokh
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
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
kszambelanczyk
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
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

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
garrison
Hobbes is a low-level distributed database for the Elixir programming language. Hobbes provides a simple, safe, and scalable storage lay...
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
Damirados
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
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews