Hacker News new | ask | show | jobs
by limit499karma 565 days ago
Is there an underlying assumption that the channels are containers and not streams?
1 comments

No, it's the opposite - the library treats channels as streams, processing items as they arrive without needing to know the total size in advance. This is why it can handle infinite streams and large datasets that don't fit in memory.