[JS Compose] 0. Understand 'Box' or 'Container', they are just like Array!

We'll examine how to unnest function calls, capture assignment, and create a linear data flow with a type we call Box. This is our introduction to working with the various container-style types.

 

At first, might not be comforable with 'Box' or 'Container' idea. It bit similar to 'Array'.
Lets see an example first:
复制代码
const nextCharForNumberString = str =>
  [str]  // [' 64 ']
  .map(s => s.trim()) // ['64']
  .map(r => parseInt(r)) // [64]
  .map(i => i + 1) // [65]
  .map(i => String.fromCharCode(i)) // ["A"]
  .map(c => c.toLowerCase()) // ["a"]

const result = nextCharForNumberString('  64 ')

console.log(result) // ["a"]
复制代码

Notice that, the function take one param 'str', inside the function body, the first thing we do is put 'str' into Array. Well, we know [] this is Array because we know Javascript, we know programming. Lets assume we don't know programming, '[]' this is just something looks like a 'BOX'!

So what we do is, put 'str' into 'BOX', and every single step, we use 'map' to do transform.  Wait a second here... Because we know programming, we know what 'map' acutally does. So we think ok, this is how it should be. 

Assume again, we don't know programming... what will you describe what happen then? 

Well, I saw ' 64 ' inside a 'BOX'; then '64' inside the BOX; then 64 inside the BOX; then 65....

One thing we have to notice here now is that, 'BOX' is always there! So what actually 'map' does? Try to describe it again...

Well.. Uhm... what map actually does is that it goes into a BOX, according to the logic passed to the map and its value, doing transform to the value, then update value and set to a new BOX. So next opreation get this new BOX and new value.

 

So now you can see, Array just like a Box, so we can replace to:

复制代码
const nextCharForNumberString = str =>
  Box(str)  // Box(' 64 ')
  .map(s => s.trim()) // Box('64')
  .map(r => parseInt(r)) // Box(64)
  .map(i => i + 1) // Box(65)
  .map(i => String.fromCharCode(i)) // Box("A")
  .map(c => c.toLowerCase()) // Box("a")

const result = nextCharForNumberString('  64 ')

console.log(result) // Box("a")
复制代码

 

Of course, this code won't work in Javascript. 

So we need to define 'Box': it should be a function return an object, which has 'map' function, 'map' function accpect an function as param and take the value pass from the Box. The return value from 'map' should still put back into the Box, so that, the next map function can use it.

const Box = (x) => ({
   map: f => Box(f(x)) 
})

 

So far is good, but we don't want the result as 'Box("a")', we just want the value "a", so we can add another function into map, which call 'fold', the function will just return the updated value.

复制代码
const Box = (x) => ({
  map: f => Box(f(x)),
  fold: f => f(x)
})

const nextCharForNumberString = str =>
  Box(str)  // Box(' 64 ')
  .map(s => s.trim()) // Box('64')
  .map(r => parseInt(r)) // Box(64)
  .map(i => i + 1) // Box(65)
  .map(i => String.fromCharCode(i)) // Box("A")
  .fold(c => c.toLowerCase()) // "a"

const result = nextCharForNumberString('  64 ')

console.log(result) // "a"
复制代码

Now we got "a". 

 

The important thing to take away from here is: 'Box' and 'Container' are nothing but like 'Array' which we already know. 

'map' function is not just loop over Array, it is actually goes into the Box and update the value, and return a new Box with the updated value.

 

posted @   Zhentiw  阅读(327)  评论(0编辑  收藏  举报
编辑推荐:
· 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工具
历史上的今天:
2015-12-11 [Unit Testing] Angular Unit Testing, ui-router, httpbackend and spy
2014-12-11 [Angular-Scaled Web] 7. Refactor code into Models
点击右上角即可分享
微信分享提示