函数式编程之-定义能够支持Partial application的函数 (2)

基于这样的函数定义,你才可以通过管道符把对一个数据集合的操作连接起来:

let result = [1..10] |> List.map (fun i -> i+1) |> List.filter (fun i -> i>10)

另外这样定义的函数还特别容易粘接和组合,下一篇将介绍如何组合函数。

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wpwgpy.html