Vec.empty

Constructs a vector containing all 0's.

struct Vec(T, size_t size)
static
Vec!(T, size)
empty
()
if (
isNumeric!T &&
size > 0
)

Return Value

Type: Vec!(T, size)

An vector containing all 0's.

Meta