rainbowadn/rainbowadn/chain/reduction/reductionresult.py
2022-05-08 21:56:17 +03:00

11 lines
227 B
Python

from typing import Generic, TypeVar
__all__ = ('ReductionResult',)
ReductorType = TypeVar('ReductorType')
AccumulatorType = TypeVar('AccumulatorType')
class ReductionResult(Generic[ReductorType, AccumulatorType]):
pass