Generic Operator

!=(_:_:)

Returns a Boolean value indicating whether the two arguments are not equal. 2つの引数が等しくないかどうかを指し示すブール値を返します。

Declaration 宣言

func != <T>(lhs: T, rhs: T) -> Bool where T : Equatable, T : RawRepresentable, T.RawValue : Equatable

Parameters パラメータ

lhs

A raw-representable instance. 生の表現が可能なインスタンス。

rhs

A second raw-representable instance. 第2の生の表現が可能なインスタンス。

See Also 参照

Comparing Values 値の比較