11 lines
227 B
Python
11 lines
227 B
Python
from typing import Generic, TypeVar
|
|
|
|
__all__ = ('ReductionResult',)
|
|
|
|
ReductorType = TypeVar('ReductorType')
|
|
AccumulatorType = TypeVar('AccumulatorType')
|
|
|
|
|
|
class ReductionResult(Generic[ReductorType, AccumulatorType]):
|
|
pass
|