Erlang : Is there a function to remove all nested elements from a list?

StackOverflow https://stackoverflow.com/questions/22131315

  •  19-10-2022
  •  | 
  •  

Pergunta

I have this kind of list:

[[[[{a,2},{s,w}],{e,1}],{d,l}]]

Is there a function that will remove all of the tuples so they are all on the same level? Like:

[{a,2},{s,w},{e,1},{d,l}]

Thanks

Foi útil?

Solução

You can use flatten/1 from the lists module.

lists:flatten([[[[{a,2},{s,w}],{e,1}],{d,l}]]).
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top