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

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

  •  19-10-2022
  •  | 
  •  

سؤال

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

هل كانت مفيدة؟

المحلول

You can use flatten/1 from the lists module.

lists:flatten([[[[{a,2},{s,w}],{e,1}],{d,l}]]).
مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top