Vector.opDispatch

Undocumented in source. Be warned that the author may not have intended to support it.
  1. T opDispatch [@property getter]
  2. T opDispatch [@property getter]
  3. auto opDispatch [@property getter]
  4. U opDispatch [@property setter]
    struct Vector(size_t N, T, alias string AS = "")
    pure @property
    static if(AS.length > 0)
    static if(isOneSymbolPerFieldAccessString(AS, SEP))
    opDispatch
    (
    string v
    U
    )
    (
    in U b
    )
    if (
    v.length > 1 &&
    oneOfAccessAll(AS, v, SEP)
    &&
    isCompatibleArrayAccessString(v.length, v)
    &&
    (
    isCompatibleVector!(v.length, T, U) ||
    (
    is(typeof(T(U.datatype.init)))
    )
    )
    )
    if (
    isCompatibleArrayAccessString(N, AS, SEP) ||
    AS.length == 0
    )

Meta