Partager via


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

L'opérateur de multiplication 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 op_Multiply and ^T1 : (new : unit ->  ^T1) and ^T1 : struct and ^T1 :> ValueType and ^T2 with static member op_Multiply 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 valeur nullable.

  • value
    Type : ^T2

    La deuxième valeur d'entrée.

Valeur de retour

Le résultat de la multiplication, comme valeur nullable.

Notes

Si la première valeur est null, la valeur de retour est null.

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#)