Contents

!=(_:_:)

Returns a Boolean value indicating whether the two arguments are not equal.

Declaration

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

Parameters

  • lhs:

    A raw-representable instance.

  • rhs:

    A second raw-representable instance.

See Also

Comparing Values