Vector.opAssign

Undocumented in source. Be warned that the author may not have intended to support it.
struct Vector(size_t N, T, alias string AS = "")
pure
opAssign
(
size_t K
E
alias string oas
)
(
in Vector!(K, E, oas) b
)
if (
(
K == N ||
K == 0
||
N == 0
)
&&
is(typeof(T(E.init)))
)
if (
isCompatibleArrayAccessString(N, AS, SEP) ||
AS.length == 0
)

Meta