摘要: const Box = x => ({ map: f => Box(f(x)), chain: f => f(x), fold: f => f(x), toString: () => `Box(${x})` }) // Exercise: Box // Goal: Refactor each exa 阅读全文
posted @ 2020-05-09 03:40 Zhentiw 阅读(135) 评论(0) 推荐(0)