Specialization of splicerN to N being 3.
immutable int[6] x = [0, 1, 3, 3, 4, 5]; immutable y = x.splicer3; assert(y.first.equal(x[0 .. 2])); assert(y.second.equal(x[2 .. 4])); assert(y.third.equal(x[4 .. $]));
See Implementation
Specialization of splicerN to N being 3.