frameMakeSlice

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

Allocates and initializes an array of type T with the given length.

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

Allocates and initializes an array of type T with the given length.

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

Allocates and initializes an array of type T with the given slice.