DynamicArray.opEquals

Comparison for equality.

  1. bool opEquals(typeof(this) rhs)
  2. bool opEquals(U[] rhs)
    struct DynamicArray(T, alias Allocator = null, CapacityType = size_t)
    @safe pragma(inline) const scope
    bool
    opEquals
    (
    U
    )
    (
    const scope U[] rhs
    )
    if (
    is(typeof(T[].init == U[].init))
    )
    if (
    !is(Unqual!T == bool) &&
    (
    is(CapacityType == ulong) ||
    is(CapacityType == uint)
    )
    )

Meta