jokaMakeSlice

fnT[] jokaMakeSlice(T)(Sz length, IStr file = __FILE__, Sz line = __LINE__)

Allocates a slice and initializes its elements.

fnT[] jokaMakeSlice(T)(MemoryContext context, Sz length, IStr file = __FILE__, Sz line = __LINE__)

Allocates a slice and initializes its elements.

fnT[] jokaMakeSlice(T)(Sz length, const(T) value, IStr file = __FILE__, Sz line = __LINE__)

Allocates a slice and initializes its elements.

fnT[] jokaMakeSlice(T)(MemoryContext context, Sz length, const(T) value, IStr file = __FILE__, Sz line = __LINE__)

Allocates a slice and initializes its elements.

fnT[] jokaMakeSlice(T)(const(T)[] values, IStr file = __FILE__, Sz line = __LINE__)

Allocates a slice and initializes its elements.

fnT[] jokaMakeSlice(T)(MemoryContext context, const(T)[] values, IStr file = __FILE__, Sz line = __LINE__)

Allocates a slice and initializes its elements.