ExtraTopLevelOperators.Lazy<'T>, modèle actif (F#)
Un modèle actif permettant de forcer l'exécution des valeurs de type Lazy.
Espace de noms/Chemin du module : Microsoft.FSharp.Core.ExtraTopLevelOperators
Assembly : FSharp.Core (in FSharp.Core.dll)
// Signature:
( |Lazy| ) : Lazy<'T> -> 'T
Paramètres
- input
Type : Lazy<'T>
Notes
Cette fonction se nomme LazyPattern dans les assemblys compilés.Si vous accédez à la fonction à partir d'un langage autre que F# ou par réflexion, utilisez ce nom.
Exemple
Le code suivant illustre l'utilisation d'un modèle actif 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
Sortie
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 : 2,0, 4,0, portables