ExtraTopLevelOperators.Lazy<'T> アクティブ パターン (F#)
更新 : 2010 年 5 月
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 7、Windows Vista SP2、Windows XP SP3、Windows XP x64 SP2、Windows Server 2008 R2、Windows Server 2008 SP2、Windows Server 2003 SP2
バージョン情報
F# ランタイム
サポート対象: 2.0、4.0
Silverlight
サポート: 3
参照
その他の技術情報
Core.ExtraTopLevelOperators モジュール (F#)
Microsoft.FSharp.Core 名前空間 (F#)
履歴の変更
日付 |
履歴 |
理由 |
---|---|---|
2010 年 5 月 |
コード例を追加。 |
情報の拡充 |