As a literal, this isn’t valid syntax and makes the compiler complain:
** (SyntaxError) iex:18:67: unexpected expression after keyword list. Keyword lists must always come last in lists and maps. Therefore, this is not allowed:
[some: :value, :another]
%{some: :value, another => value}
Instead, reorder it to be the last entry:
[:another, some: :value]
%{another => value, some: :value}
Syntax error after: ','
|
18 | re_developments: [properties: [re_development: [:re_developer]]],
| ^
It’s certainly possible to remove the extra lists wrapped around some elements, but I’d start by looking into where this data comes from - specifically, why every keyword list seems to end up with an extra list wrapped around it.
As @al2o3cr points out, your desired output is not even legal syntax. But if you put the atoms in front and the lists at the bottom then it becomes legal:
Your original problem is solveable if you can do a recursive visit function that converts double-nested lists – e.g. [ [elements, ...] ] – to normal lists (e.g. [elements, ...]).
We can give you the solution if you are truly stuck, no worries, but it’s usually a good idea for you to learn. So what have you tried?
Secondly, avoid the XY problem and let us know the original problem you are grappling with that led to this conundrum. Maybe we’ll be able to help better.
@al2o3cr Indeed, this is not valid syntax. Thanks for letting me know.
@dimitarvp I discovered that Macro.postwalk(list, fn [[x]] -> [x]; x -> x end) works for this case. But you’re right about the fact that I should learn how to handle this, I will take some time to study recursion better.