Added order by functions

This commit is contained in:
2021-07-26 15:21:57 +02:00
parent cc7755bafc
commit 0cae3428b9
7 changed files with 172 additions and 38 deletions

View File

@@ -20,6 +20,12 @@ class IterableABC(ABC, list):
@abstractmethod
def for_each(self, func: Callable): pass
@abstractmethod
def order_by(self, func: Callable): pass
@abstractmethod
def order_by_descending(self, func: Callable): pass
@abstractmethod
def single(self): pass