---
import std.algorithm;
import std.range;
import std.stdio;

void main(){
        only(iota(0,4),[1,4,5]).writeln;
}
---
How can I call std.range.only with different range types?

Reply via email to