Creates a new $(D_PSYMBOL SList).
Allocator.
auto l = SList!int(2, 3); assert(l.front == 3);
auto l = SList!int(2); assert(l.front == 0);
See Implementation
Creates a new $(D_PSYMBOL SList).