Array.opEquals

Comparison for equality.

  1. bool opEquals(typeof(this) that)
  2. bool opEquals(typeof(this) that)
    struct Array(T)
    const @trusted
    bool
    opEquals
    ()
    (
    auto ref const typeof(this) that
    )
  3. bool opEquals(R that)
  4. bool opEquals(R that)

Parameters

that typeof(this)

The array to compare with.

Return Value

Type: bool

$(D_KEYWORD true) if the arrays are equal, $(D_KEYWORD false) otherwise.

Meta