共用方式為


Option.bind<'T,'U> 函式 (F#)

以本身會產生選項的選擇性值叫用函式。

命名空間/模組路徑:Microsoft.FSharp.Core.Option

組件:FSharp.Core (在 FSharp.Core.dll 中)

// Signature:
bind : ('T -> 'U option) -> 'T option -> 'U option

// Usage:
bind binder option

參數

  • binder
    型別:'T -> 'U option

    函式,採用選項中型別為 T 的值,並將它轉換成含有型別 U 之值的選項。

  • option
    型別:'T option

    輸入選項。

傳回值

繫結器之輸出型別的選項。

備註

運算式 Option.bind f inp 會評估為 match inp with None -> None | Some x -> f x.

這個函式在已編譯的組件中名為 Bind。 如果您是透過 F# 以外的語言,或是透過反映來存取函式,請使用這個名稱。

範例

下列程式碼說明如何使用 Option.bind

let stringOpt1 = Some("Mirror Image")
let stringOpt2 = None
let reverse (string : System.String) =
    match string with
    | "" -> None
    | s -> Some(new System.String(string.ToCharArray() |> Array.rev))

let result1 = Option.bind reverse stringOpt1
printfn "%A" result1
let result2 = Option.bind reverse stringOpt2
printfn "%A" result2

Output

  

平台

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

版本資訊

F# 核心程式庫版本

支援版本:2.0, 4.0,可攜式執行檔 (PE)。

請參閱

參考

Core.Option 模組 (F#)

Microsoft.FSharp.Core 命名空間 (F#)