|
__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 divmod(this_instance, other) as 2-tuple
(quotient, remainder) both float . |
|
|
|
__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. |
|
|
|
|
|
__imul__(self,
other)
Multiply this instance by a scalar or an other instance. |
|
|
|
__int__(self)
Convert this instance to int as int(self.fsum() +
partials) . |
|
|
|
__ipow__(self,
other,
*mod)
Raise this instance to power 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. |
|
|
|
|
|
__radd__(self,
other)
Sum of this and a scalar or an other instance. |
|
|
|
__rdivmod__(self,
other)
Not implemented. |
|
|
|
__rfloordiv__(self,
other)
Not implemented. |
|
|
|
|
|
__rmod__(self,
other)
Return other % self as Fsum. |
|
|
|
__rmul__(self,
other)
Product of this and an other instance or a scalar. |
|
|
|
__round__(self,
ndigits=None)
Not implemented. |
|
|
|
__rpow__(self,
other,
*mod)
Not implemented. |
|
|
|
__rsub__(self,
other)
Return other - this as Fsum. |
|
|
|
__rtruediv__(self,
other)
Return other / self as Fsum. |
|
|
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,
xs)
Subtract several scalar values. |
|
|
|
fsub_(self,
*xs)
Subtract all scalar positional values. |
|
|
|
fsum(self,
xs=None)
Accumulate more scalar values and sum all. |
|
|
|
fsum_(self,
*xs)
Accumulate all scalar positional values and sum all. |
|
|
|
fsum2(self,
xs=None)
Accumulate more scalar values and return the sum and residual. |
|
|
|
fsum2_(self,
*xs)
Accumulate all scalar positional values and provide the sum
and delta. |
|
|
|
is_integer(self)
Return True if this instance is an integer. |
|
|
|
toRepr(self,
prec=8,
sep=', ',
fmt='g',
**unused)
Return this Fsum instance as representation. |
|
|
|
toStr(self,
prec=8,
sep=', ',
fmt='g',
**unused)
Return this Fsum instance as string. |
|
|
Inherited from named._Named :
_DOT_ ,
__repr__ ,
attrs ,
classof ,
dup ,
rename ,
toStr2
Inherited from object :
__delattr__ ,
__getattribute__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__setattr__ ,
__subclasshook__
|