Lazy.CreateFromValue <'T>. Método de extensão (F#)
Cria uma computação lenta que avalia o valor fornecido quando forçada.
Caminho do namespace/módulo: Microsoft.FSharp.Control.LazyExtensions
Assembly: FSharp.Core (em FSharp.Core.dll)
// Signature:
type System.Lazy with
member static CreateFromValue : Lazy<'T>
// Usage:
lazy.CreateFromValue (value)
Parâmetros
value
Tipo: 'TO valor de entrada.
Valor de retorno
Criaram Lazy objeto.
Exemplo
O exemplo de código a seguir ilustra o uso de Lazy.CreateFromValue método de extensão. Neste exemplo, um dicionário é usado para armazenar valores computados anteriormente. Quando a função fatorial é chamada, se o valor é já calculado, em seguida, Lazy.CreateFromValue é chamado com o resultado em cache. Se o valor não é já calculado, em seguida, Lazy.Create é usado.
let cacheMap = new System.Collections.Generic.Dictionary<_, _>()
cacheMap.Add(0, 1I)
cacheMap.Add(1, 1I)
let lazyFactorial n =
let rec factorial n =
if cacheMap.ContainsKey(n) then cacheMap.[n] else
let result = new System.Numerics.BigInteger(n) * factorial (n - 1)
cacheMap.Add(n, result)
result
if cacheMap.ContainsKey(n) then
printfn "Reading factorial for %d from cache." n
Lazy.CreateFromValue(cacheMap.[n])
else
printfn "Creating lazy factorial for %d." n
Lazy.Create (fun () ->
printfn "Evaluating lazy factorial for %d." n
let result = factorial n
result)
printfn "%A" ((lazyFactorial 12).Force())
printfn "%A" ((lazyFactorial 10).Force())
printfn "%A" ((lazyFactorial 11).Force())
printfn "%A" ((lazyFactorial 30).Force())
Saída
Plataformas
O Windows 7, SP2 do Windows Vista, Windows XP SP3, Windows XP Professional x64 SP2, Windows Server 2008 R2, Windows Server 2008 SP2, Windows Server 2003 SP2
Informações sobre versão
O tempo de execução F#
Compatível com: 2.0
Silverlight
Compatível com: 3
Consulte também
Referência
Módulo de Control.LazyExtensions (F#)
Histórico de alterações
Date |
History |
Motivo |
---|---|---|
Maio de 2010 |
Exemplo de código adicionado. |
Aprimoramento de informações. |