-
Notifications
You must be signed in to change notification settings - Fork 35
M_CodeJam_Option_1_op_Inequality
Andrew Koryavchenko edited this page Jun 17, 2018
·
5 revisions
Unequality operator.
Namespace: CodeJam
Assembly: CodeJam (in CodeJam.dll) Version: 2.1.0.0
C#
public static bool operator !=(
Option<T> left,
Option<T> right
)
VB
Public Shared Operator <> (
left As Option(Of T),
right As Option(Of T)
) As Boolean
F#
static let inline (<>)
left : Option<'T> *
right : Option<'T> : bool
- left
- Type: CodeJam.Option(T)
Left operand. - right
- Type: CodeJam.Option(T)
Right operand.
Type: BooleanTrue
, if left not equals right.