JupiterIO1

JupiterIO1

Ultimately I’d like to update the values of keys in myMap based on whether the key is in myList and in myOtherList:

myList = ["a", "b", "c"]
myOtherList = ["b"]
myMap = %{"a" => "no", "b" => "no", "c" => "no"}

Enum.each(myList, fn e -> 
    case Enum.member?(myOtherList, e) do
        true -> Map.replace(myMap, e, "yes")
        false -> Map.replace(myMap, e, "no")
    end
end)

myMap doesn’t update.

I believe the problem would be because of immutability, but I still cannot arrive to a solution. I’m open to other Map function suggestions.

Showing Posts 1 to 10

jgonet

jgonet

Popcorn Core Team

I suggest using if else for this. Also, to mutate your map you have to use explicit assignment, so my_map = if (...).

Oh, and in Elixir snake_case is the most widely used convention.

sanswork

sanswork

Check out Enum.reduce

peerreynders

peerreynders

defmodule Demo do

  def replace_with(list, value) do
    fn {x , _} = pair ->
      cond do
        Enum.member?(list, x) -> {x, value}
        true -> pair
      end
    end
  end

end

myOtherList = ["b"]
myMap = %{"a" => "no", "b" => "no", "c" => "no"}

newMap =
  myMap
  |> Enum.map(Demo.replace_with(myOtherList, "yes"))
  |> Map.new()

IO.inspect(newMap)
$ elixir demo.exs
%{"a" => "no", "b" => "yes", "c" => "no"}
$
NobbZ

NobbZ

Will myList always be identical to Map.keys(myMap)? Or will they diverge?

Will Map.values(myMap) always be identical to a list of "no"? Or might there be other values?

In the following solution, I will assume, that myList and Map.keys(myMap) might be different, while the values all have to be "no".

intersection_of_keys = myList -- myOtherList

for {k, v} <- myMap, into: %{} do
  if k in intersection_of_keys, do: {k, "yes"}, else: {k, "no"}
end

The reason why your original code did not work is, because the inner binding in the fn you pass to Enum.each/2 does not change the outer binding of myMap, always remember, elixir is immutable, it does only support shadowing, but shadowing does never leak its scope.

peerreynders

peerreynders

To me it seems peculiar that the original code completely ignores all the values that are already in the Map - what is the point of having a Map then?

myOtherList = ["b"]
myMap = %{"a" => "no", "b" => "no", "c" => "no"}
difference = Map.keys(myMap) -- myOtherList
new_value = "yes"

newMap =
  (for {k, _} = pair <- myMap, do:
    if k in difference, do: pair, else: {k, new_value})
  |> Map.new()

IO.inspect(newMap)
JupiterIO1

JupiterIO1 OP

Let me be more specific by redefining the problem:

For each key in map_A (we don’t care about the values) get another known map (for example sake: map_B) which is referenced by the key at map_A and test whether any of the keys in map_B matches some variable x. If match, update value at key in map_A to "yes", else "no". And this is the problem.

The problem exists, as NobbZ said:

and I assume in this case that any iterator will not allow this. That goes for Enum.each/2 and:

for x ← some_enumerable do
…
end

I cannot see further than this:

x = "something"
for f <- Map.keys(map_A) do
    if(Enum.member?(Map.keys(map_B), x) == true) do
        Map.replace(map_A, f, "yes")
    else
        Map.replace(map_A, f, "no")
    end
end
peerreynders

peerreynders

There is no “iterator”. for is a comprehension. Simply speaking it consumes an enumerable and produces a list (or whatever else :into identifies) - it’s an expression like everything else in Elixir, not a statement.

JupiterIO1

JupiterIO1 OP

The solution was solved in another topic:

peerreynders

peerreynders

Stop thinking of “variables”- all values in Elixir are immutable. However identifiers can be rebound to new values. So the only thing that can “vary” is the value the identifier is bound to - not the value itself.
Imperative languages are about PLace-Oriented Programming (PLOP) - in functional programming you are programming with values (The Value of Values).

Furthermore you don’t “loop” in Elixir - you recurse.

JupiterIO1

JupiterIO1 OP

You are right. As much as I have learnt and understood this concept, I should be more specific with my language. ty

— All posts loaded —

Where Next? Top

Trending in Questions Top

katta
I having some trouble figuring out if I have set myself too strict of standards for my production server. Currently I can handle 75% of r...
New
brecabral
Documentation While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
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
kpanic
Hi everyone, I am toying with the idea of building a “match maker” for giving personal help to people that wants to start coding. I sta...
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
asweet-confluent
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
apz
I’m new to elixir and just tried to install the elixirLS extension for VScode(ium) and it is throwing some errors that I would like help ...
New

Other Trending Topics Top

GenericJam
Edit: 2026 May 15 - This post is archived. Mob is alive!! Main docs: mob v0.7.11 — Documentation A bit of explanation for the slightly c...
New
JesseHerrick
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
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
mhanberg
Hi everyone! The first release candidate for the Expert language server project is now available! We’ve published a press release detai...
New
budgie
A little off-topic, but I feel like people here have a good head on their shoulders. I used to be quite good at making software. Was luc...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews