[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)
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· AI技术革命,工作效率10个最佳AI工具
2014-12-15 [AngularJS] $http cache
2014-12-15 [AngularJS+ GSAP] Greensock TimelineLite Animation Sequences