-
Notifications
You must be signed in to change notification settings - Fork 111
Open
Description
It would be very cool to have. I sometimes face problems where I have a table of tables like
{
{ "thing1", "thing2" },
{ "thing3", "thing4" },
-- ...
}And want to flatten this mess out using just one simple operation:
fun.flatten(mess)And get this majestic data structure in the end:
{
"thing1",
"thing2",
"thing3",
"thing4",
-- ...
}I realize that I can simulate flatten with reduce and chain, but it's far less intuitive
fun.reduce(function(acc, x) return fun.chain(acc, x) end, {}, mess)in Fennel it's a bit nicer, but still noisy
(fun.reduce #(fun.chain $1 $2) [] mess)Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels