Partager via


NullableOperators.( ?+ )<^T1,^T2,^T3>, fonction (F#)

L'opérateur d'addition où une valeur nullable apparaît sur la gauche.

Namespace/Module Path: Microsoft.FSharp.Linq.NullableOperators

Assembly : FSharp.Core (in FSharp.Core.dll)

// Signature:
( ?+ ) : Nullable<^T1> -> ^T2 -> Nullable<^T3> when ^T1 with static member (+) and ^T1 : (new : unit ->  ^T1) and ^T1 : struct and ^T1 :> ValueType and ^T2 with static member (+) and ^T3 : (new : unit ->  ^T3) and ^T3 : struct and ^T3 :> ValueType

// Usage:
nullableValue ?+ value

Paramètres

  • nullableValue
    Type : Nullable<T><^T1>

    La première valeur d'entrée, comme type Nullable.

  • value
    Type : ^T2

    La deuxième valeur d'entrée.

Valeur de retour

La somme des deux valeurs d'entrée, comme type Nullable.

Notes

Si la première valeur est null, le résultat est null, en tant que type Nullable.

Plateformes

Windows 8, Windows 7, Windows Server 2012, Windows Server 2008 R2

Informations de version

Versions de bibliothèque principale F#

Prise en charge dans : 4,0, portable

Voir aussi

Référence

Linq.NullableOperators, module (F#)

Microsoft.FSharp.Linq, espace de noms (F#)