split Error - no overload matches

meta meta at gmail.com
Tue Feb 15 18:37:44 UTC 2022


A trick i use often:

```D
import std;

void main()
{
     import uni =  std.uni;
     writeln("Learning D is fun".split!(uni.isWhite));
}

```

Under-rated way of importing things, you don't bloat your scope 
anymore




More information about the Digitalmars-d-learn mailing list