March 1, 2022
2:03 a.m.
Marcus Denker wrote:
There are experiments around, for example
And https://github.com/juliendelplanque/Iterators, which letâs you do for example: ``` iterator := #(1 2 3) iterator. iterator | [ :x | x * 2 ] collectIt | [ :object | object logCr ] doIt "Just print incoming objects in transcript." > NullAddableObject "Special object that ignore incoming objects." ```