xxxxxxxxxx
import std.algorithm;
import std.range;
class X { this(uint x) {} }
void main()
{
[1].map!(x => new X(x)).slide(2);
}