摘要: 函数式编程中有一种模式是通过组合多个函数的功能来实现一个组合函数。一般支持函数式编程的工具库都实现了这种模式,这种模式一般被称作compose与pipe。以函数式著称的Ramda工具库为例。const R = require('ramda');function inc (num) { return ++num;}const fun1 = R.compose(Math.abs, inc, Math... 阅读全文
posted @ 2018-10-15 21:45 FeMiner 阅读(1811) 评论(0) 推荐(0) 编辑