static func != (AutoreleasingUnsafeMutablePointer<Pointee>, AutoreleasingUnsafeMutablePointer<Pointee>) -> Bool
Returns a Boolean value indicating whether two values are not equal.
2つの値が等しくないかどうかを指し示すブール値を返します。
Availability
Technology
static func == (x: AutoreleasingUnsafeMutablePointer
<Pointee>, y: AutoreleasingUnsafeMutablePointer
<Pointee>) -> Bool
lhs
A value to compare. 比較する値。
rhs
Another value to compare. もう一方の比較する値。
Equality is the inverse of inequality. For any values a
and b
, a == b
implies that a != b
is false
.
同等性は、不等性の裏返しです。何らかの値a
とb
に対して、a == b
はa != b
がfalse
であることを意味します。
Note 注意
This documentation comment was inherited from Equatable
.
この文書化コメントは、Equatable
から引き継がれました。
static func != (AutoreleasingUnsafeMutablePointer<Pointee>, AutoreleasingUnsafeMutablePointer<Pointee>) -> Bool