Options.equal

Fallback method that tests whether a is equal to b. It simply does $(D_KEYWORD ==) comparison.

  1. bool equal(T a, T b)
    struct Options(Args...)
    bool
    equal
    (
    T
    )
    (
    T a
    ,
    T b
    )
  2. bool equal(Arg.T a, Arg.T b)

Parameters

a T

Left-hand side operand.

b T

Right-hand side operand.

Return Value

Type: bool

$(D_KEYWORD true) if a == b, $(D_KEYWORD false) otherwise.

Meta