ExtraTopLevelOperators.Lazy<'T> アクティブ パターン (F#)
Lazy 型の値を強制的に実行するアクティブ パターン。
名前空間/モジュール パス: Microsoft.FSharp.Core.ExtraTopLevelOperators
アセンブリ: FSharp.Core (FSharp.Core.dll 内)
// Signature:
( |Lazy| ) : Lazy<'T> -> 'T
パラメーター
- input
型: Lazy<'T>
解説
この関数は、コンパイルされたアセンブリでは LazyPattern という名前です。F# 以外の言語から、またはリフレクションを使用してこの関数にアクセスする場合は、この名前を使用します。
使用例
Lazy アクティブ パターンの使用方法を次のコードに示します。
let rec factorial n = match n with 0 | 1 -> 1 | n -> n * (factorial (n-1))
let lazyValue = lazy ( factorial (10) )
// No computation occurs until the match expression executes.
match lazyValue with
| Lazy value -> printfn "10 factorial is %d" value
出力
プラットフォーム
Windows 8、Windows 7、Windows Server 2012 で Windows Server 2008 R2
バージョン情報
F# コア ライブラリのバージョン
サポート: ポータブル 2.0、4.0