[Functional Programming] Start With the API You Want Then Implement
If you can think ahead to how you want your code to look into the future, then you can tackle your problems from the inside out. You design how you want the code to look, then go about implementing the internals. This is similar to a "test driven development" mindset where you test the implementation first, then write the actual implementation of the function after.
Original way:
const transform = pipe( map((x) => x[1]), filter((x) => x !== ','), concat, map(toUpper) ); let typeGreeting = transform( createZipOf(createInterval(100), createForOf('My Zipo')) ); const cancelGreating = typeGreeting(_log) // cancelGreating()
New:
const myZip = (boradcaster1, boradcaster2) => (...operators) => { return pipe(...operators)(createZipOf(boradcaster1, boradcaster2)) } const typeGreeting2 = myZip( // boradcasters createInterval(100), createForOf('My Zipo') )( // operators map((x) => x[1]), filter((x) => x !== ','), concat, map(toUpper) ) const cancelGreating2 = typeGreeting2(_log) // cancelGreating2()
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 | import { curry, compose, toUpper, pipe } from 'ramda' ; // #region listeners const _log = (value) => console.log(value); // #endregion // #region broadcasters const done = Symbol( 'done' ); const addListener = curry((element, eventType, listener) => { return element.addEventListener(evenType, listener); }); const createInterval = curry((time, listener) => { let i = 0; const id = setInterval(() => { listener(i++); }, time); return () => { clearInterval(id); }; }); const createForOf = curry((iterator, listener) => { const id = setTimeout(() => { for ( let item of iterator) { listener(item); } listener(done); }, 0); return () => { clearTimeout(id); }; }); const createZipOf = curry((broadcaster1, broadcaster2, listener) => { let cancelBoth; let buffer1 = []; const cancel1 = broadcaster1((value) => { buffer1.push(value); if (buffer2.length) { listener([buffer1.shift(), buffer2.shift()]); if (buffer1[0] === done || buffer2[0] === done) { listener(done); cancelBoth(); } } }); let buffer2 = []; const cancel2 = broadcaster2((value) => { buffer2.push(value); if (buffer1.length) { listener([buffer1.shift(), buffer2.shift()]); if (buffer1[0] === done || buffer2[0] === done) { listener(done); cancelBoth(); } } }); cancelBoth = () => { cancel1(); cancel2(); }; return cancelBoth; }); // #endregion // #region operators const concat = curry((broadcaster, listener) => { let string = '' ; return broadcaster((value) => { if (value === done) { listener(done); return ; } listener(( string += value)); }); }); const map = curry((transform, broadcaster, listener) => { return broadcaster((value) => { if (value === done) { listener(done); return ; } listener(transform(value)); }); }); const filter = curry((predicator, broadcaster, listener) => { return broadcaster((value) => { if (value === done) { listener(done); return ; } if (predicator(value)) { listener(value); } }); }); // #endregion const transform = pipe( map((x) => x[1]), filter((x) => x !== ',' ), concat, map(toUpper) ); let typeGreeting = transform( createZipOf(createInterval(100), createForOf( 'My Zipo' )) ); const cancelGreating = typeGreeting(_log) // cancelGreating() const myZip = (boradcaster1, boradcaster2) => (...operators) => { return pipe(...operators)(createZipOf(boradcaster1, boradcaster2)) } const typeGreeting2 = myZip( // boradcasters createInterval(100), createForOf( 'My Zipo' ) )( // operators map((x) => x[1]), filter((x) => x !== ',' ), concat, map(toUpper) ) const cancelGreating2 = typeGreeting2(_log) // cancelGreating2() |
【推荐】国内首个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工具
2019-10-25 [Schematics] 1. Copy and Manipulate Template
2019-10-25 [Schematics] 0. Schematics "Hello World"
2019-10-25 [RxJS] Subject asObservable() method
2019-10-25 [Flutter] Passing the data backwards thought Navigator
2018-10-25 [Unit Testing] Fundamentals of Testing in Javascript
2016-10-25 [Debug] Chrome Devtools: Elements - Console Integration
2016-10-25 [Flexbox] Use Flex to Scale Background Image