pub struct BigInteger(pub String);Expand description
Wolfram Language BigInteger — arbitrary-precision integer carried as its
textual decimal representation (e.g. "99999999999999999999999").
Tuple Fields§
§0: StringImplementations§
Trait Implementations§
Source§impl Clone for BigInteger
impl Clone for BigInteger
Source§fn clone(&self) -> BigInteger
fn clone(&self) -> BigInteger
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BigInteger
impl Debug for BigInteger
impl Eq for BigInteger
Source§impl From<BigInteger> for Expr
impl From<BigInteger> for Expr
Source§fn from(n: BigInteger) -> Expr
fn from(n: BigInteger) -> Expr
Converts to this type from the input type.
Source§impl<'de> FromWXF<'de> for BigInteger
impl<'de> FromWXF<'de> for BigInteger
Source§fn from_wxf_with_tag<R: Reader<'de>>(
r: &mut WxfReader<R>,
tok: ExpressionEnum,
) -> Result<Self, Error>
fn from_wxf_with_tag<R: Reader<'de>>( r: &mut WxfReader<R>, tok: ExpressionEnum, ) -> Result<Self, Error>
Read the body given the already-consumed expression token.
Source§impl Hash for BigInteger
impl Hash for BigInteger
Source§impl Ord for BigInteger
impl Ord for BigInteger
Source§fn cmp(&self, other: &BigInteger) -> Ordering
fn cmp(&self, other: &BigInteger) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for BigInteger
impl PartialEq for BigInteger
Source§fn eq(&self, other: &BigInteger) -> bool
fn eq(&self, other: &BigInteger) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for BigInteger
impl PartialOrd for BigInteger
impl StructuralPartialEq for BigInteger
Auto Trait Implementations§
impl Freeze for BigInteger
impl RefUnwindSafe for BigInteger
impl Send for BigInteger
impl Sync for BigInteger
impl Unpin for BigInteger
impl UnsafeUnpin for BigInteger
impl UnwindSafe for BigInteger
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more