-
Notifications
You must be signed in to change notification settings - Fork 35
M_CodeJam_Option_1_op_Inequality
andrewvk edited this page Jun 23, 2016
·
5 revisions
[This is preliminary documentation and is subject to change.]
Unequality operator.
Namespace: CodeJam
Assembly: CodeJam (in CodeJam.dll) Version: 1.0.0.0 (1.0.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 BooleanF#
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.