Emits each value together with the value that preceded it, null for the first value.
null
For upstream a, b, c the output is (null, a), (a, b), (b, c).
a, b, c
(null, a), (a, b), (b, c)