xxxxxxxxxx
import std.stdio;
void main(string[] args)
{
import std.algorithm, std.range, std.typecons;
auto r = 10.iota.array;
r.remove(tuple(2, 4)).writeln;
}