Creates a new $(D_PSYMBOL SList) with the elements from a static array.
Static array size.
Values to initialize the list with.
Allocator.
auto l = SList!int([5, 8, 15]); assert(l.front == 5);
See Implementation
Creates a new $(D_PSYMBOL SList) with the elements from a static array.