[−][src]Struct rustpython_vm::obj::objint::PyInt
int(x=0) -> integer int(x, base=10) -> integer
Convert a number or string to an integer, or return 0 if no arguments are given. If x is a number, return x.int(). For floating point numbers, this truncates towards zero.
If x is not a number or if base is given, then x must be a string, bytes, or bytearray instance representing an integer literal in the given base. The literal can be preceded by '+' or '-' and be surrounded by whitespace. The base defaults to 10. Valid bases are 0 and 2-36. Base 0 means to interpret the base from the string as an integer literal. >>> int('0b100', base=0) 4
Methods
impl PyInt
[src]
impl PyInt
[src]
pub fn xor(
&self,
other: PyObjectRef,
vm: &VirtualMachine
) -> PyArithmaticValue<BigInt>
[src]
&self,
other: PyObjectRef,
vm: &VirtualMachine
) -> PyArithmaticValue<BigInt>
pub fn or(
&self,
other: PyObjectRef,
vm: &VirtualMachine
) -> PyArithmaticValue<BigInt>
[src]
&self,
other: PyObjectRef,
vm: &VirtualMachine
) -> PyArithmaticValue<BigInt>
pub fn and(
&self,
other: PyObjectRef,
vm: &VirtualMachine
) -> PyArithmaticValue<BigInt>
[src]
&self,
other: PyObjectRef,
vm: &VirtualMachine
) -> PyArithmaticValue<BigInt>
pub fn hash(&self) -> i64
[src]
Trait Implementations
impl Debug for PyInt
[src]
impl Display for PyInt
[src]
impl PyClassDef for PyInt
[src]
impl PyClassImpl for PyInt
[src]
const TP_FLAGS: PyTpFlags
[src]
fn impl_extend_class(ctx: &PyContext, class: &PyClassRef)
[src]
fn extend_class(ctx: &PyContext, class: &PyClassRef)
[src]
fn make_class(ctx: &PyContext) -> PyClassRef
[src]
fn make_class_with_base(ctx: &PyContext, base: PyClassRef) -> PyClassRef
[src]
impl PyValue for PyInt
[src]
fn class(vm: &VirtualMachine) -> PyClassRef
[src]
const HAVE_DICT: bool
[src]
fn into_ref(self, vm: &VirtualMachine) -> PyRef<Self>
[src]
fn into_ref_with_type(
self,
vm: &VirtualMachine,
cls: PyClassRef
) -> PyResult<PyRef<Self>>
[src]
self,
vm: &VirtualMachine,
cls: PyClassRef
) -> PyResult<PyRef<Self>>
fn into_ref_with_type_unchecked(
self,
cls: PyClassRef,
dict: Option<PyDictRef>
) -> PyRef<Self>
[src]
self,
cls: PyClassRef,
dict: Option<PyDictRef>
) -> PyRef<Self>
Auto Trait Implementations
impl RefUnwindSafe for PyInt
impl Send for PyInt
impl Sync for PyInt
impl Unpin for PyInt
impl UnwindSafe for PyInt
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> IntoPyObject for T where
T: PyValue,
[src]
T: PyValue,
fn into_pyobject(
Self,
&VirtualMachine
) -> Result<Rc<PyObject<dyn PyObjectPayload + 'static>>, PyRef<PyBaseException>>
[src]
Self,
&VirtualMachine
) -> Result<Rc<PyObject<dyn PyObjectPayload + 'static>>, PyRef<PyBaseException>>
impl<T> PyObjectPayload for T where
T: 'static + PyValue,
[src]
T: 'static + PyValue,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,