Returns a Boolean value indicating whether the two given values are not equal.
SDK
- Xcode 9.0+
Framework
- Swift Standard Library
Declaration
Parameters
lhs
An integer to compare.
rhs
Another integer to compare.
Discussion
You can check the inequality of instances of any Binary
types using the not-equal-to operator (!=
). For example, you can test whether the first UInt8
value in a string’s UTF-8 encoding is not equal to the first UInt32
value in its Unicode scalar view: