[JS Compose] 5. Create types with Semigroups

Posted Answer1215

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[JS Compose] 5. Create types with Semigroups相关的知识,希望对你有一定的参考价值。

An introduction to concatting items via the formal Semi-group interface. Semi-groups are simply a type with a concat method that are associative. We define three semigroup instances and see them in action.

 

A semigroup is a type with a concat method. Let‘s see if we have a string A, we can concat that with the string B. String is the semigroup here because it has a concat method. If we log this out here, we shall see the results AB and there we are.

"a".concat("b").concat("c"); //"abc"
"a".concat("b".concat("c")); //"abc"

 

We can also define our own semi-group:

const Sum = x =>
  ({
    x, // we need to export x, so we can access it
    concat: o => Sum(o.x + x), // o -> Sum(x)
    toString: () => `Sum(${x})`
  });

const res = Sum(1).concat(Sum(2));
console.log(res.toString()); // Sum(3)
const All = x => ({
  x,
  concat: o => All(o.x && x),
  toString: ()=> `All(${x})`
});

const res = All(true).concat(All(false));
console.log(res.toString()); // All(false)
const First = x => ({
  x,
  concat: o => First(x),
  toString: () => `First(${x})`
});

const res = First(true).concat(First(false));
console.log(res.toString()); // First(true)

 

以上是关于[JS Compose] 5. Create types with Semigroups的主要内容,如果未能解决你的问题,请参考以下文章

使用Docker Compose 部署Nexus后提示:Unable to create directory /nexus-data/instance

ent 基本使用 二 简单create && query

Laravel 5.3,自定义 Css/Js 不工作

js函数式编程curry与compose实现

glance image-create --name "wj_js_company_img" --file a0e1c7fa-d6d3-410f-9bb5-e699e342db91

[JS Compose] 6. Semigroup examples