On Saturday, 24 February 2018 at 08:59:46 UTC, Domain wrote:
On Saturday, 24 February 2018 at 07:51:27 UTC, Domain wrote:
[...]

And why this not compile:

rows.each!(a => data ~= a.split(",").map!(b => b.strip).padRight("", 2));


Error: cannot deduce function from argument types !()(string[]), candidates are:
C:\D\dmd2\windows\bin\..\..\src\phobos\std\algorithm\iteration.d(899): 
C:\D\dmd2\windows\bin\..\..\src\phobos\std\algorithm\iteration.d(934):

OK, this compile:
rows.each!(a => data ~= a.split(",").map!(b => b.strip).padRight("", 2).array);

Reply via email to