Vector.toString

Returns the current vector formatted as char[] slice of the passed in buffer excluding terminating \0. The terminator is still part of the buffer to be able to use write(ln) as well as printf using buffer.ptr

struct Vector(type, int dim)
nothrow @nogc
char[]
toString
(
char[] buffer
)
if (
(dim >= 2) &&
(dim <= 4)
)

Meta