如果通过比较流中的两个项目满足条件,我想在流中插入项目。流意味着Observable<Object>
在图表中,它看起来像
10 -> 20 -> 40 -> 50 -> 70 -> 90 (input stream)
|if two items are more than 10 apart, insert item that is 10 times the previous item in comparison, both comparison items are always emitted|
10 -> 20 -> 200 -> 40 -> 50 -> 500 -> 70 -> 700 -> 90 (output stream)
以上只是一个例子。实际上,我希望有一个从前一项映射的通用插入项。
感谢。