Skip to content

Commit

Permalink
remove All and Any operator (can easily be done with CombineLatest)
Browse files Browse the repository at this point in the history
  • Loading branch information
semiversus committed Sep 23, 2018
1 parent 2870391 commit 62efc70
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 133 deletions.
4 changes: 1 addition & 3 deletions broqer/op/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
""" The op module contains all operators broqer offers """

# synchronous operators
from .any_ import Any
from .all_ import All
from .accumulate import Accumulate, build_accumulate
from .cache import Cache
from .catch_exception import CatchException
Expand Down Expand Up @@ -39,7 +37,7 @@
apply_operator_overloading()

__all__ = [
'Any', 'All', 'Accumulate', 'Cache', 'CatchException', 'CombineLatest',
'Accumulate', 'Cache', 'CatchException', 'CombineLatest',
'Filter', 'Map', 'Merge', 'Partition', 'Reduce', 'Replace', 'Sink',
'SlidingWindow', 'Switch', 'Debounce', 'Delay', 'FromPolling', 'Sample',
'MapAsync', 'MODE', 'MapThreaded', 'Throttle', 'OnEmitFuture', 'True_',
Expand Down
15 changes: 0 additions & 15 deletions broqer/op/all_.py

This file was deleted.

68 changes: 0 additions & 68 deletions broqer/op/any_.py

This file was deleted.

27 changes: 0 additions & 27 deletions test/test_op_all.py

This file was deleted.

20 changes: 0 additions & 20 deletions test/test_op_any.py

This file was deleted.

0 comments on commit 62efc70

Please sign in to comment.