Array.opEquals

Comparison for equality.

  1. bool opEquals(typeof(this) that)
  2. bool opEquals(typeof(this) that)
  3. bool opEquals(R that)
    struct Array(T)
    bool
    opEquals
    (
    R
    )
    ()
    if (
    is(R == Range)
    )
  4. bool opEquals(R that)

Parameters

that R

The array to compare with.

Return Value

Type: bool

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

Meta