Options.equal

Overloaded, configurable method that tests whether a is equal to b.

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

Parameters

a Arg.T

Left-hand side operand.

b Arg.T

Right-hand side operand.

Return Value

Type: bool

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

Meta