コード例 #1
0
ファイル: test_publishvalue.py プロジェクト: lizh06/RxPY
 def mapper(_xs):
     return _xs.pipe(
         ops.zip(_xs.pipe(ops.skip(1))),
         ops.map(sum),
     )
コード例 #2
0
 def create():
     return e1.pipe(ops.zip(e2), ops.map(sum))
コード例 #3
0
 def create():
     return o1.pipe(ops.zip(o2))
コード例 #4
0
 def create():
     return e2.pipe(ops.zip(e1), ops.map(sum))
コード例 #5
0
ファイル: test_multicast.py プロジェクト: lizh06/RxPY
 def mapper(ys):
     return ys.pipe(
         ops.zip(ys),
         ops.map(sum),
     )