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 accessString, string dataSep = " ", string accessSep = "|")
    pure @property
    static if(isOneSymbolPerFieldForAnyAccessString(accessString, dataSep, accessSep))
    opDispatch
    (
    string v
    U
    )
    (
    in U b
    )
    if (
    v.length > 1 &&
    oneOfAnyAccessAll(accessString, v, dataSep, accessSep)
    &&
    &&
    (
    isSpecVector!(v.length, T, U) ||
    (
    isDynamicVector!U &&
    is(typeof(T(U.datatype.init)))
    )
    )
    )
    if (
    isCompatibleArrayAccessStrings(N, accessString, dataSep, accessSep)
    )

Meta