|
__init__(self,
*starts,
**name)
Initialize a new accumulator with one or more start values. |
|
|
|
__abs__(self)
Return absolute value of this instance. |
|
|
|
__add__(self,
other)
Sum of this and a scalar or an other instance. |
|
|
|
__bool__(self)
Is this instance non-zero?. |
|
|
|
__ceil__(self)
Return the ceil of this instance as float . |
|
|
|
__divmod__(self,
other)
Return the 2-tuple divmod(this_instance, other) . |
|
|
|
__eq__(self,
other)
Compare this and an other instance or scalar. |
|
|
|
__float__(self)
Convert this instance to float as
float(self.fsum()) . |
|
|
|
__floor__(self)
Return the floor of this instance as float . |
|
|
|
__floordiv__(self,
other)
Not implemented. |
|
|
|
|
|
__ge__(self,
other)
Compare this and an other instance or scalar. |
|
|
|
__gt__(self,
other)
Compare this and an other instance or scalar. |
|
|
|
__hash__(self)
Return the hash of this instance. |
|
|
|
__iadd__(self,
other)
Add a scalar or an other instance to this instance. |
|
|
|
__int__(self)
Convert this instance to int as int(self.fsum() +
partials) . |
|
|
|
|
|
__imul__(self,
other)
Multiply this instance by a scalar or an other instance. |
|
|
|
__iset__(self,
other)
Override this instance with an other. |
|
|
|
__isub__(self,
other)
Subtract a scalar or an other instance from this instance. |
|
|
|
__itruediv__(self,
other)
Devide this instance by a scalar divisor only. |
|
|
|
__le__(self,
other)
Compare this and an other instance or scalar. |
|
|
|
__len__(self)
Return the total number of accumulated values
(int ). |
|
|
|
__lt__(self,
other)
Compare this and an other instance or scalar. |
|
|
|
|
|
__mod__(self,
other)
Return this_instance % other . |
|
|
|
__mul__(self,
other)
Product of this and an other instance or a scalar. |
|
|
|
__ne__(self,
other)
Compare this and an other instance or scalar. |
|
|
|
__neg__(self)
Return a copy of this instance, negated. |
|
|
|
__pos__(self)
Return this instance, as-is. |
|
|
|
__pow__(self,
other,
*mod)
Not implemented. |
|
|
|
__radd__(self,
other)
Not implemented. |
|
|
|
__rdivmod__(self,
other)
Not implemented. |
|
|
|
__rfloordiv__(self,
other)
Not implemented. |
|
|
|
|
|
__rmod__(self,
other)
Not implemented. |
|
|
|
__rmul__(self,
other)
Not implemented. |
|
|
|
__round__(self,
ndigits=None)
Not implemented. |
|
|
|
__rpow__(self,
other,
*mod)
Not implemented. |
|
|
|
__rsub__(self,
other)
Not implemented. |
|
|
|
__rtruediv__(self,
other)
Not implemented. |
|
|
int
|
|
|
|
|
__sub__(self,
other)
Difference of this and an other instance or a scalar. |
|
|
|
__truediv__(self,
other)
Quotient of this instance and a scalar. |
|
|
|
__trunc__(self)
Convert this instance to int as int(self.fsum() +
partials) . |
|
|
|
__div__(self,
other)
Quotient of this instance and a scalar. |
|
|
|
__idiv__(self,
other)
Devide this instance by a scalar divisor only. |
|
|
|
__long__(self)
Convert this instance to int as int(self.fsum() +
partials) . |
|
|
|
__nonzero__(self)
Is this instance non-zero?. |
|
|
|
fadd(self,
xs)
Accumulate more scalar values from an iterable. |
|
|
|
fadd_(self,
*xs)
Accumulate more scalar values from positional arguments. |
|
|
|
fcopy(self,
deep=False,
name='')
Copy this instance, shallow or deep . |
|
|
|
copy(self,
deep=False,
name='')
Copy this instance, shallow or deep . |
|
|
|
fdiv(self,
divisor)
Devide this instance by a scalar. |
|
|
|
fmul(self,
factor)
Multiple this instance by a scalar. |
|
|
|
fsub(self,
iterable)
Subtract more scalar values from an iterable. |
|
|
|
fsub_(self,
*xs)
Subtract more scalar values from positional arguments. |
|
|
|
fsum(self,
iterable=( ) )
Accumulate more scalar values from an iterable and sum all. |
|
|
|
fsum_(self,
*xs)
Accumulate more scalar values from positional arguments and
sum all. |
|
|
|
fsum2_(self,
*xs)
Accumulate more scalar values from positional arguments, sum
all and provide the sum and delta. |
|
|
|
is_integer(self)
Return True if this instance is an integer. |
|
|
Inherited from named._Named :
_DOT_ ,
__repr__ ,
attrs ,
classof ,
dup ,
rename ,
toRepr ,
toStr ,
toStr2
Inherited from object :
__delattr__ ,
__getattribute__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__setattr__ ,
__subclasshook__
|