infix
operator
!= {
associativity
none
precedence
130
}
Declarations
Returns false
iff t0
is identical to t1
; i.e. if they are both
nil
or they both represent the same type.
Declaration
func
!=(
t0
:
Any
.
Type
?,
t1
:
Any
.
Type
?) -
>
Bool
Returns true
if the arrays do not contain the same elements.
Declaration
func
!=
<
Element
:
Equatable
>
(
lhs
:
ArraySlice
<
Element
>
,
rhs
:
ArraySlice
<
Element
>
) -
>
Bool
Returns true
if the arrays do not contain the same elements.
Declaration
func
!=
<
Element
:
Equatable
>
(
lhs
:
ContiguousArray
<
Element
>
,
rhs
:
ContiguousArray
<
Element
>
) -
>
Bool
Returns true
iff lhs.rawValue != rhs.rawValue
.
Declaration
func
!=
<
T
:
Equatable
where
T
:
RawRepresentable
,
T
.
RawValue
:
Equatable
>
(
lhs
:
T
,
rhs
:
T
) -
>
Bool
Returns true
iff lhs.rawValue != rhs.rawValue
.
Declaration
func
!=
<
T
:
RawRepresentable
where
T
.
RawValue
:
Equatable
>
(
lhs
:
T
,
rhs
:
T
) -
>
Bool
Declaration
func
!=
<
T
>
(
lhs
:
_OptionalNilComparisonType
,
rhs
:
T
?) -
>
Bool
Declaration
func
!=
<
T
>
(
lhs
:
T
?,
rhs
:
_OptionalNilComparisonType
) -
>
Bool
Declaration
func
!=(
lhs
:
Double
,
rhs
:
Double
) -
>
Bool