How can I make a nested array and flatten it at run time in D?

Philos Kim philos99 at gmail.com
Fri Mar 8 01:00:43 UTC 2019


I want to make a nested array and flatten it at run-time like 
this.

auto nestedArray = [1, 2, [3, 4], 5];

auto flattenedArray = myFun(nestedArray);

writeln(flattenedArray);   // => [1, 2, 3, 4, 5]


How can I do this in D?

Please help me out!



More information about the Digitalmars-d-learn mailing list