예제 #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))