billposters
I have a list of maps that provide a type of property lookup, and a map with values.
lookup =
[
%{key: "foo", type: :string},
%{key: "bar", type: :string},
%{key: "baz", type: :string}
]
params = %{foo: "bananas", baz: "apples}
What I’ve been attempting to do (unsuccessfully) is to use Enum.reduce, for lack of a better approach, in order to combine the two into the following format, while discarding any lookup keys that aren’t present in values:
output =
[
%{key: :foo, value: "bananas", type: :string},
%{key: :baz, value: "apples", type: :string},
]
I had tried this, but I can’t work out how to access the value from params using the atom key from lookup.
def clever_merge(lookup, params) do
Enum.reduce(lookup, [], fn(%{key: k, type: t}, output) ->
with rec <- %{key: String.to_atom(k), value: params.k, type: t} do
List.insert_at(output, -1, rec)
end
end)
end
The other issue is filtering out keys that aren’t present in params. I tried a few combinations of if statements around Enum.reduce but I couldn’t work it out.
I know it’s always a big ask but could someone point me in the right direction please?
Thanks.
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
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
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
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
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
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
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
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
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
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
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
- #elixirconf-eu
- #metaprogramming
- #hex











Showing Posts 1 to 7- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
brettbeatty
I would actually swap the roles of your
lookupandparamsvariables. If order doesn’t matter, you could just turnlookupinto a map and iterate overparamsto create your expectedoutput.iangl
The answer above is very straightforward and I think should work pretty well!
If you do wanna go with reducing because the order matters, I think this should work:
Have not tested it, but I’d believe it will work
sribe
You don’t say what error you might have gotten, but in my quick reading I only see only problem “.” is for accessing fields of records, you want
params[key]basically, but of course you need a conditional on whether or not it exists, so you also want toiforcaseon a check for its existenceEiji
You have 2 mistakes in code:
You are calling
params.kexpecting thatkis variable.params.kworks likeparams[:k]and therefore it would not work for you. Also you cannot mixAtomandStringtypes as they are completely different types.Your
withclause would alwaysraisesomething like:The raison is described in 1st point. However mistake here is to assume that
raisewould simply failwithclause.Elixirway is “let it fail”. Of course you can writecatch/try, but unless you have a strong reason for it it’s generally not recommend.Here are my 2 proposals:
There are 2 major differences between
safeandunsafeversions:safeis good for data from untrusted source like user inputunsafeis faster because we have instead ofEnum.find/2we are using purepattern matchingwhich is optimized by compilerIn case we are sure about existence of
string_keyanywhere inparams(asAtom) we can useString.to_existing_atom/1which is safe, but in case like yours it would raiseArgumentErrorand that’s why I have not provided asafeway with optimizedpattern-matchingusage.Code you wrote is good in theory and may be bad in practice.
You are doing something (swapping roles of 2 variables) without a discussion with author of topic. This is called
assumptionand in theory there is nothing bad. However take in mind that there are no 2 exactly same people and it’s only matter of time when you would expect different behaviour.In this example you reached expected result and therefore there is nothing bad in your code
now. I can see 2 cases when assumption would cause trouble:On
proddata - pay attention that every data posted on forum (and on source with public access) should be redacted, so the code which works here does not need to works inprod.Even if assumption works in practice it may fail when
enhancingoriginal theory. Let’s take an example. Somebody asked you to make a decorations and you should useeggsfor it. Mostly by assumption ofeasterdaypainting eggs is just “normal”, but if we do not want them foreasterdayeven if they would be worth thousands ofUSDwe may need new eggs for decorations.This one is unfortunately a popular mistake. Using
[head | tail]optimization along withEnum.reverse/1is faster than appending two lists like in your example.You see well, but you do not everything.
You missed that there are used 2 different types (
AtomandString).Hope it helps.
kokolegorille
My ugly one.. I’m also a fan of looping over params, and using lookup as a dictionary.
ityonemo
I think you shouldn’t use Enum.reduce for this. Enum.flat_map is better, since you are going from list to list and possibly omitting some.
billposters
Thanks for everybody’s help. I hadn’t thought of swapping roles and looping over the params.
But it was great to learn from all the different takes on using Enum. It’s been a real benefit, so thank you.