Operator 演算子

==(_:_:)

Returns a Boolean value indicating whether two types are identical. 2つの型が同一かどうかを指し示すブール値を返します。

Declaration 宣言

func == (t0: Any.Type?, t1: Any.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. true、もしt0t1nilならば、またはそれらが同じ型を表すならば;そうでなければ、false

See Also 参照

Querying Runtime Values 実行時値の問い合わせ