float

class guppylang.std.num.float[source]

An IEEE754 double-precision floating point value.

__abs__() float[source]
__add__(other: float) float[source]
__bool__() bool[source]
__ceil__() float[source]
__divmod__(other: float) tuple[float, float][source]
__eq__(other: float) bool[source]

Return self==value.

__float__() float[source]
__floor__() float[source]
__floordiv__(other: float) float[source]
__ge__(other: float) bool[source]

Return self>=value.

__gt__(other: float) bool[source]

Return self>value.

__hash__ = None
__int__() int[source]
__le__(other: float) bool[source]

Return self<=value.

__lt__(other: float) bool[source]

Return self<value.

__mod__(other: float) float[source]
__mul__(other: float) float[source]
__nat__() nat[source]
__ne__(other: float) bool[source]

Return self!=value.

__neg__() float[source]
static __new__(x)[source]
__pos__() float[source]
__pow__(other: float) float[source]
__radd__(other: float) float[source]
__rdivmod__(other: float) tuple[float, float][source]
__rfloordiv__(other: float) float[source]
__rmod__(other: float) float[source]
__rmul__(other: float) float[source]
__round__() float[source]
__rpow__(other: float) float[source]
__rsub__(other: float) float[source]
__rtruediv__(other: float) float[source]
__sub__(other: float) float[source]
__truediv__(other: float) float[source]
__trunc__() float[source]