Expected.opEquals

Checks whether this Expected object and rhs contain the same expected value or error value.

  1. bool opEquals(T rhs)
  2. bool opEquals(T rhs)
  3. bool opEquals(Expected!(T, E, Hook) rhs)
  4. bool opEquals(Expected!(T, E, Hook) rhs)
    struct Expected(T, E = string, Hook = Abort)
    static if(!(!isChecked!Hook))
    bool
    opEquals
    ()
    (
    auto ref Expected!(T, E, Hook) rhs
    )
    if (
    !is(E == void) &&
    (
    !is(T == void)
    )
    )

Meta