Vector.length

Length of elements. Enum, if vector is static.

  1. auto length [@property getter]
  2. size_t length [@property setter]
    struct Vector(size_t N, T, alias string AS = "")
    pure pure @property
    static if(isDynamic)
    length
    (
    size_t nl
    )
    if (
    isCompatibleArrayAccessStrings(N, AS, VVASES, VVASVS) ||
    AS.length == 0
    )
  3. enum length;

Meta