int

class guppylang.std.num.int[source]

A 64-bit signed integer.

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

Return self==value.

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

Return self>=value.

__gt__(other: int) bool[source]

Return self>value.

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

Return self<=value.

__lshift__(other: int) int[source]
__lt__(other: int) bool[source]

Return self<value.

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

Return self!=value.

__neg__() int[source]
static __new__(x)[source]
__or__(other: int) int[source]

Return self|value.

__pos__() int[source]
__pow__(exponent: int) int[source]
__radd__(other: int) int[source]
__rand__(other: int) int[source]
__rdivmod__(other: int) tuple[int, int][source]
__rfloordiv__(other: int) int[source]
__rlshift__(other: int) int[source]
__rmod__(other: int) int[source]
__rmul__(other: int) int[source]
__ror__(other: int) int[source]

Return value|self.

__round__() int[source]
__rpow__(other: int) int[source]
__rrshift__(other: int) int[source]
__rshift__(other: int) int[source]
__rsub__(other: int) int[source]
__rtruediv__(other: int) float[source]
__rxor__(other: int) int[source]
__sub__(other: int) int[source]
__truediv__(other: int) float[source]
__trunc__() int[source]
__xor__(other: int) int[source]