Hi All,

  Request your help on the below error

Program
```
void main()
{
        import std.stdio:writeln;
        import std.algorithm.iteration : splitter;
        
        auto splitter_ptr = &splitter!((a, b) => a.splitter(b).array);
    string str = "TEST1;TEST2;TEST3";
    auto words = splitter_ptr(str, ';');
    foreach (word; words) { writeln(word); }
}
```
```
Error: template instance `splitter!((a, b) => a.splitter(b).array)` does not match any template declaration
```

From,
Vino

Reply via email to