NullableOperators (FSharp.Core)
The multiplication operator where a nullable value appears on the right
The multiplication operator where a nullable value appears on the right
-
arg0
:
^T1 -
arg1
:
Nullable<^T2>
-
Returns:
Nullable<^T3>
See the other operators in this module for related examples.
The multiplication operator where a nullable value appears on the left
The multiplication operator where a nullable value appears on the left
-
arg0
:
Nullable<^T1> -
arg1
:
^T2
-
Returns:
Nullable<^T3>
See the other operators in this module for related examples.
The modulus operator where a nullable value appears on the right
The modulus operator where a nullable value appears on the right
-
arg0
:
^T1 -
arg1
:
Nullable<^T2>
-
Returns:
Nullable<^T3>
See the other operators in this module for related examples.
The addition operator where a nullable value appears on the right
The addition operator where a nullable value appears on the right
-
arg0
:
^T1 -
arg1
:
Nullable<^T2>
-
Returns:
Nullable<^T3>
See the other operators in this module for related examples.
The subtraction operator where a nullable value appears on the right
The subtraction operator where a nullable value appears on the right
-
arg0
:
^T1 -
arg1
:
Nullable<^T2>
-
Returns:
Nullable<^T3>
See the other operators in this module for related examples.
The division operator where a nullable value appears on the right
The division operator where a nullable value appears on the right
-
arg0
:
^T1 -
arg1
:
Nullable<^T2>
-
Returns:
Nullable<^T3>
See the other operators in this module for related examples.
The '<=' operator where a nullable value appears on the right
The '<=' operator where a nullable value appears on the right
-
arg0
:
'T -
arg1
:
Nullable<'T>
-
Returns:
bool
See the other operators in this module for related examples.
The '<>' operator where a nullable value appears on the right
The '<>' operator where a nullable value appears on the right
-
arg0
:
'T -
arg1
:
Nullable<'T>
-
Returns:
bool
See the other operators in this module for related examples.
The '<' operator where a nullable value appears on the right
The '<' operator where a nullable value appears on the right
-
arg0
:
'T -
arg1
:
Nullable<'T>
-
Returns:
bool
See the other operators in this module for related examples.
The '=' operator where a nullable value appears on the right
The '=' operator where a nullable value appears on the right
-
arg0
:
'T -
arg1
:
Nullable<'T>
-
Returns:
bool
See the other operators in this module for related examples.
The '>=' operator where a nullable value appears on the right
The '>=' operator where a nullable value appears on the right
-
arg0
:
'T -
arg1
:
Nullable<'T>
-
Returns:
bool
See the other operators in this module for related examples.
The '>' operator where a nullable value appears on the right
The '>' operator where a nullable value appears on the right
-
arg0
:
'T -
arg1
:
Nullable<'T>
-
Returns:
bool
See the other operators in this module for related examples.
The modulus operator where a nullable value appears on the left
The modulus operator where a nullable value appears on the left
-
arg0
:
Nullable<^T1> -
arg1
:
^T2
-
Returns:
Nullable<^T3>
See the other operators in this module for related examples.
The modulus operator where a nullable value appears on both left and right sides
The modulus operator where a nullable value appears on both left and right sides
-
Returns:
Nullable<^T3>
See the other operators in this module for related examples.
The multiplication operator where a nullable value appears on both left and right sides
The multiplication operator where a nullable value appears on both left and right sides
-
Returns:
Nullable<^T3>
See the other operators in this module for related examples.
The addition operator where a nullable value appears on the left
The addition operator where a nullable value appears on the left
-
arg0
:
Nullable<^T1> -
arg1
:
^T2
-
Returns:
Nullable<^T3>
See the other operators in this module for related examples.
The addition operator where a nullable value appears on both left and right sides
The addition operator where a nullable value appears on both left and right sides
-
Returns:
Nullable<^T3>
See the other operators in this module for related examples.
The subtraction operator where a nullable value appears on the left
The subtraction operator where a nullable value appears on the left
-
arg0
:
Nullable<^T1> -
arg1
:
^T2
-
Returns:
Nullable<^T3>
See the other operators in this module for related examples.
The subtraction operator where a nullable value appears on both left and right sides
The subtraction operator where a nullable value appears on both left and right sides
-
Returns:
Nullable<^T3>
See the other operators in this module for related examples.
The division operator where a nullable value appears on the left
The division operator where a nullable value appears on the left
-
arg0
:
Nullable<^T1> -
arg1
:
^T2
-
Returns:
Nullable<^T3>
See the other operators in this module for related examples.
The division operator where a nullable value appears on both left and right sides
The division operator where a nullable value appears on both left and right sides
-
Returns:
Nullable<^T3>
See the other operators in this module for related examples.
The '<' operator where a nullable value appears on the left
The '<' operator where a nullable value appears on the left
-
arg0
:
Nullable<'T> -
arg1
:
'T
-
Returns:
bool
open FSharp.Linq.NullableOperators
Nullable(3) ?< 4 // true
Nullable(4) ?< 4 // false
Nullable() ?< 4 // false
Multiple items
namespace Microsoft.FSharp
--------------------
namespace FSharp
namespace Microsoft.FSharp.Linq
module NullableOperators from Microsoft.FSharp.Linq
The '<=' operator where a nullable value appears on the left
The '<=' operator where a nullable value appears on the left
-
arg0
:
Nullable<'T> -
arg1
:
'T
-
Returns:
bool
open FSharp.Linq.NullableOperators
Nullable(3) ?<= 4 // true
Nullable(5) ?<= 4 // false
Nullable() ?<= 4 // false
Multiple items
namespace Microsoft.FSharp
--------------------
namespace FSharp
namespace Microsoft.FSharp.Linq
module NullableOperators from Microsoft.FSharp.Linq
The '<=' operator where a nullable value appears on both left and right sides
The '<=' operator where a nullable value appears on both left and right sides
-
Returns:
bool
See the other operators in this module for related examples.
The '<>' operator where a nullable value appears on the left
The '<>' operator where a nullable value appears on the left
-
arg0
:
Nullable<'T> -
arg1
:
'T
-
Returns:
bool
open FSharp.Linq.NullableOperators
Nullable(3) ?<>= 4 // true
Nullable(4) ?<>= 4 // false
Nullable() ?<> 4 // true
Multiple items
namespace Microsoft.FSharp
--------------------
namespace FSharp
namespace Microsoft.FSharp.Linq
module NullableOperators from Microsoft.FSharp.Linq
The '<>' operator where a nullable value appears on both left and right sides
The '<>' operator where a nullable value appears on both left and right sides
-
Returns:
bool
See the other operators in this module for related examples.
The '<' operator where a nullable value appears on both left and right sides
The '<' operator where a nullable value appears on both left and right sides
-
Returns:
bool
See the other operators in this module for related examples.
The '=' operator where a nullable value appears on the left
The '=' operator where a nullable value appears on the left
-
arg0
:
Nullable<'T> -
arg1
:
'T
-
Returns:
bool
open FSharp.Linq.NullableOperators
Nullable(3) ?= 4 // false
Nullable(4) ?= 4 // true
Nullable() ?= 4 // false
Multiple items
namespace Microsoft.FSharp
--------------------
namespace FSharp
namespace Microsoft.FSharp.Linq
module NullableOperators from Microsoft.FSharp.Linq
The '=' operator where a nullable value appears on both left and right sides
The '=' operator where a nullable value appears on both left and right sides
-
Returns:
bool
See the other operators in this module for related examples.
The '>' operator where a nullable value appears on the left
The '>' operator where a nullable value appears on the left
-
arg0
:
Nullable<'T> -
arg1
:
'T
-
Returns:
bool
open FSharp.Linq.NullableOperators
Nullable(3) ?> 4 // false
Nullable(5) ?> 4 // true
Nullable() ?> 4 // false
Multiple items
namespace Microsoft.FSharp
--------------------
namespace FSharp
namespace Microsoft.FSharp.Linq
module NullableOperators from Microsoft.FSharp.Linq
The '>=' operator where a nullable value appears on the left
The '>=' operator where a nullable value appears on the left
-
arg0
:
Nullable<'T> -
arg1
:
'T
-
Returns:
bool
open FSharp.Linq.NullableOperators
Nullable(3) ?>= 4 // false
Nullable(4) ?>= 4 // true
Nullable() ?>= 4 // false
Multiple items
namespace Microsoft.FSharp
--------------------
namespace FSharp
namespace Microsoft.FSharp.Linq
module NullableOperators from Microsoft.FSharp.Linq
The '>=' operator where a nullable value appears on both left and right sides
The '>=' operator where a nullable value appears on both left and right sides
-
Returns:
bool
See the other operators in this module for related examples.