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)
    struct Expected(T, E = string, Hook = Abort)
    const
    static if(!isChecked!Hook)
    bool
    opEquals
    ()
    (
    const auto ref Expected!(T, E, Hook) rhs
    )
    if (
    !is(E == void) &&
    (
    !is(T == void)
    )
    )
  4. bool opEquals(Expected!(T, E, Hook) rhs)

Meta