Slide 87
Slide 87 text
9 Combine in Foundation
Foundation provides some extremely useful publisher
abstractions to wrap common constructs
["a", "b", "c"].publisher // "a", "b", "c"
(1...5).publisher // 1, 2, 3, 4, 5
stride(from: 0, to: 100, by: 25).publisher // 0, 25, 50, 75
[“conf": "AppBuilders", "year": 2020].publisher
// ("conf", "AppBuilders"), ("year": 2020)
Sequence.publisher