Contents

==(_:_:)

Returns a Boolean value indicating whether two types are identical.

Declaration

func == (t0: (any (~Copyable & ~Escapable).Type)?, t1: (any (~Copyable & ~Escapable).Type)?) -> Bool

Parameters

  • t0:

    A type to compare.

  • t1:

    Another type to compare.

Return Value

true if both t0 and t1 are nil or if they represent the same type; otherwise, false.

See Also

Tuple Comparison