Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Pattern matching key in Erlang maps

I have a map of form shown below:

Map = #{#{country=>"India"} => #{rank => 1}}.

I am trying to match it as follows:

1. #{Key := V} = Map.

or

2. #{#{country := Country} := #{rank := Rank}} = Map.

But its not working for me. Any help as to how it can be done?

like image 981
Shank Avatar asked Mar 13 '23 14:03

Shank


1 Answers

When matching key-value associations from maps the key expression must be an expression with literals or bound variables, see the documentation of maps (section Maps in Patterns).

The problem with a match expression like:

#{Key := V} = M.

Where Key is an unbound variable is that this matches all the key/value bindings in the map M, not a particular key/value. Same with the other match expression you tried, it can match several keys.

The correct way would be to fully specify the key here, like this

#{#{country => "India"} := V} = Map.
like image 184
johlo Avatar answered Mar 29 '23 04:03

johlo