Resultados de la búsqueda a petición "method-chaining"

5 la respuesta

Method Chaining vs |> Operador de tuberías

Así que tengo el siguiente código: // Learn more about F# at http://fsharp.net open System open System.Linq open Microsoft.FSharp.Collections let a = [1; 2; 3; 4; 54; 9] let c = a |> List.map(fun(x) -> x*3) |> List.filter(fun(x) -> x > 10) let d ...