|
__init__(self,
*starts)
Initialize a new accumulator with one or more start values. |
|
|
|
__add__(self,
other)
Sum of this and an other instance or a scalar. |
|
|
|
__iadd__(self,
other)
Add a scalar or an other instance to this instance. |
|
|
|
__imul__(self,
other)
Multiply this instance by a scalar or an other instance. |
|
|
|
__isub__(self,
other)
Subtract a scalar or an other instance from this instance. |
|
|
|
__len__(self)
Return the number of accumulated values. |
|
|
|
__mul__(self,
other)
Product of this and an other instance or a scalar. |
|
|
|
|
|
__sub__(self,
other)
Difference of this and an other instance or a scalar. |
|
|
|
fadd(self,
iterable)
Accumulate more values from an iterable. |
|
|
|
fadd_(self,
*xs)
Accumulate more values from positional arguments. |
|
|
|
fcopy(self,
deep=False)
Copy this instance, shallow or deep. |
|
|
|
copy(self,
deep=False)
Copy this instance, shallow or deep. |
|
|
|
fmul(self,
factor)
Multiple the current, partial sum by a factor. |
|
|
|
fsub(self,
iterable)
Accumulate more values from an iterable. |
|
|
|
fsub_(self,
*xs)
Accumulate more values from positional arguments. |
|
|
|
fsum(self,
iterable=( ) )
Accumulate more values from an iterable and sum all. |
|
|
|
fsum_(self,
*xs)
Accumulate more values from positional arguments and sum all. |
|
|
|
fsum2_(self,
*xs)
Accumulate more values from positional arguments, sum all and provide
the sum and delta. |
|
|
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__sizeof__ ,
__subclasshook__
|