示例#1
0
文件: test_find.py 项目: lizh06/RxPY
 def create():
     return xs.pipe(ops.find(lambda x, i, s: x == 3))
示例#2
0
文件: test_find.py 项目: lizh06/RxPY
        def create():
            def predicate(x, i, source):
                raise Exception(ex)

            return xs.pipe(ops.find(predicate))
示例#3
0
文件: test_find.py 项目: lizh06/RxPY
 def create():
     return xs.pipe(ops.find(lambda x, i, s: True))