Swiftz Swift函数式编程

我要开发同款
匿名用户2014年06月05日
33阅读
开发技术Swift
所属分类常用工具包、程序开发
授权协议BSD

作品详情

Swiftz是一个Swift库,实现了函数式编程。

示例代码:

let xs = [1, 2, 0, 3, 4]// we can use the Min semigroup to find the minimal element in xssconcat(Min(), 2, xs) // 0// we can use the Sum monoid to find the sum of xsmconcat(Sum<Int8, NInt8>(i: { return nint8 }), xs) // 10// we can delay computations with futureslet x: Future<Int> = Future(exec: gcdExecutionContext, {  sleep(1)  return 4})x.result() == x.result() // true, returns in 1 second// we can map and flatMap over futuresx.map({ $0.description }).result() // "4", returns instantlyx.flatMap({ (x: Int) -> Future<Int> in  return Future(exec: gcdExecutionContext, { sleep(1); return x + 1 })}).result() // sleeps another second, then returns 5
声明:本文仅代表作者观点,不代表本站立场。如果侵犯到您的合法权益,请联系我们删除侵权资源!如果遇到资源链接失效,请您通过评论或工单的方式通知管理员。未经允许,不得转载,本站所有资源文章禁止商业使用运营!
下载安装【程序员客栈】APP
实时对接需求、及时收发消息、丰富的开放项目需求、随时随地查看项目状态

评论