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

加号可以为 null 值出现在左侧的位置。

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

程序集:FSharp.Core(在 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

参数

  • nullableValue
    类型:Nullable<T><^T1>

    第一个输入值,可以为 null 的类型。

  • value
    类型:^T2

    第二个输入值。

返回值

两个输入值的总和,可以为 null 的类型。

备注

如果第一个值为 null,则结果为空,可以为 null 的类型。

平台

Windows 8,Windows 7,Windows server 2012中,Windows server 2008 R2

版本信息

F#核心库版本

支持:4.0,可移植

请参见

参考

Linq.NullableOperators 模块 (F#)

Microsoft.FSharp.Linq 命名空间 (F#)