js函数式编程-函数合并

Posted 半夜盗贼

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js函数式编程-函数合并相关的知识,希望对你有一定的参考价值。

函数编程的函数组合:两个纯函数组合之后返回了一个新函数
var compose = function(f,g) {
  return function(x) {
    return f(g(x));
  };
};
效果:
var toUpperCase = function(x) {
return x.toUpperCase();
};
var exclaim = function(x) {
return x + "!";
};
 
var shout = compose(
exclaim,
toUpperCase
);
 
console.log(shout("hello world")); //HELLO WORLD!

 

函数组合可以避免在实现相同需求式而使用嵌套函数,实现可读性。
实现一组函数的叠加产生一个新的函数我们可以利用reduce来实现,利用reduce 的累加的特性实现函数的嵌套。
function comp1(arr) {
   return function(val) {
     return arr.reduce(function(x, y) {
       return y(x(val));
     });
   };
}
或者
function comp2(arr) {
   return function(val) {
      return arr.reduce(function(x, y) {
        return y(x);   
      },val);
   };
}
 

 

这里把需要组合的函数赋值给一个数组,然后返回一个函数对数组里的函数进行组合后的函数
例子:
var funArr = [toUpperCase, exclaim];
 
console.log(comp1(funArr)); // function...
console.log(comp1(funArr)("hello")); // HELLO!
 
console.log(comp2(funArr)); // function...
console.log(comp2(funArr)("hello")); // HELLO! 

 

以上是关于js函数式编程-函数合并的主要内容,如果未能解决你的问题,请参考以下文章

Kotlin函数式编程 ② ( 过滤函数 | predicate 谓词函数 | filter 过滤函数 | 合并函数 | zip 函数 | folder 函数 | 函数式编程意义 )

Kotlin函数式编程 ① ( 函数式编程简介 | 高阶函数 | 函数类别 | Transform 变换函数 | 过滤函数 | 合并函数 | map 变换函数 | flatMap 变换函数 )

web代码片段

函数式编程

函数式编程/命令式编程

代码简化改进秘籍,JS函数式编程技巧