NullableOperators (FSharp.Core)

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

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

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

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

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

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

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

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

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

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

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

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

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

arg0 : Nullable<^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 both left and right sides

arg0 : Nullable<^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 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

arg0 : Nullable<^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 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

arg0 : Nullable<^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 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

arg0 : Nullable<^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 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

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

arg0 : Nullable<'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 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

arg0 : Nullable<'T>
arg1 : Nullable<'T>
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

arg0 : Nullable<'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 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

arg0 : Nullable<'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 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

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

arg0 : Nullable<'T>
arg1 : Nullable<'T>
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

arg0 : Nullable<'T>
arg1 : Nullable<'T>
Returns: bool

See the other operators in this module for related examples.