DynamicArray.opEquals

Comparison for equality.

  1. bool opEquals(typeof(this) rhs)
  2. bool opEquals(U[] rhs)
    struct DynamicArray(T, Allocator = Mallocator, Capacity = size_t)
    pragma(inline, true) const scope
    bool
    opEquals
    (
    U
    )
    (
    const scope U[] rhs
    )
    if (
    is(typeof(T[].init == U[].init))
    )
    if (
    !is(immutable T == immutable bool) &&
    (
    is(Capacity == ulong) ||
    is(Capacity == uint)
    )
    &&
    isAllocator!Allocator
    )

Meta