accessByString.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]
    mixintemplate accessByString(T, size_t N, string data, string AS, string VVASES = " ", string VVASVS = "|")
    pure @property
    static if(isOneSymbolPerFieldForAnyAccessString(AS, VVASES, VVASVS))
    opDispatch
    (
    string v
    U
    )
    (
    in U b
    )
    if (
    v.length > 1 &&
    oneOfAnyAccessAll(AS, v, VVASES, VVASVS)
    &&
    &&
    (
    isSpecVector!(v.length, T, U) ||
    (
    isDynamicVector!U &&
    is(typeof(T(U.datatype.init)))
    )
    )
    )
    if (
    isCompatibleArrayAccessStrings(N, AS, VVASES, VVASVS)
    )

Meta