2016-05-10 15:03:32 -04:00
<!DOCTYPE html>
< html lang = "en" >
< head >
< meta charset = "utf-8" >
< meta name = "viewport" content = "width=device-width, initial-scale=1.0" >
< meta name = "generator" content = "rustdoc" >
< meta name = "description" content = "API documentation for the Rust `Int` struct in crate `ramp`." >
< meta name = "keywords" content = "rust, rustlang, rust-lang, Int" >
< title > ramp::int::Int - Rust< / title >
< link rel = "stylesheet" type = "text/css" href = "../../rustdoc.css" >
< link rel = "stylesheet" type = "text/css" href = "../../main.css" >
< / head >
< body class = "rustdoc" >
<!-- [if lte IE 8]>
< div class = "warning" >
This old browser is unsupported and will most likely display funky
things.
< / div >
<![endif]-->
< nav class = "sidebar" >
< p class = 'location' > < a href = '../index.html' > ramp< / a > ::< wbr > < a href = 'index.html' > int< / a > < / p > < script > window . sidebarCurrent = { name : 'Int' , ty : 'struct' , relpath : '' } ; < / script > < script defer src = "sidebar-items.js" > < / script >
< / nav >
< nav class = "sub" >
< form class = "search-form js-only" >
< div class = "search-container" >
< input class = "search-input" name = "search"
autocomplete="off"
placeholder="Click or press ‘ S’ to search, ‘ ?’ for more options…"
type="search">
< / div >
< / form >
< / nav >
< section id = 'main' class = "content struct" >
< h1 class = 'fqn' > < span class = 'in-band' > Struct < a href = '../index.html' > ramp< / a > ::< wbr > < a href = 'index.html' > int< / a > ::< wbr > < a class = 'struct' href = '' > Int< / a > < / span > < span class = 'out-of-band' > < span id = 'render-detail' >
< a id = "toggle-all-docs" href = "javascript:void(0)" title = "collapse all docs" >
[< span class = 'inner' > − < / span > ]
< / a >
2016-05-10 23:34:09 -04:00
< / span > < a id = 'src-1309' class = 'srclink' href = '../../src/ramp/int.rs.html#119-123' title = 'goto source code' > [src]< / a > < / span > < / h1 >
2016-05-10 15:03:32 -04:00
< pre class = 'rust struct' > pub struct Int {
// some fields omitted
}< / pre > < div class = 'docblock' > < p > An arbitrary-precision signed integer.< / p >
< p > This type grows to the size it needs to in order to store the result of any operation.< / p >
< h2 id = 'creation' class = 'section-header' > < a href = '#creation' > Creation< / a > < / h2 >
< p > An < code > Int< / code > can be constructed in a number of ways:< / p >
< ul >
< li > < p > < code > Int::zero< / code > and < code > Int::one< / code > construct a zero- and one-valued < code > Int< / code > respectively.< / p > < / li >
< li > < p > < code > Int::from< / code > will convert from any primitive integer type to an < code > Int< / code > of the same value< / p >
< pre class = 'rust rust-example-rendered' >
< span class = 'kw' > let< / span > < span class = 'ident' > four< / span > < span class = 'op' > =< / span > < span class = 'ident' > Int< / span > ::< span class = 'ident' > from< / span > (< span class = 'number' > 4< / span > );< / pre > < / li >
< li > < p > < code > Int::from_str< / code > (or < code > str::parse< / code > ) will attempt to convert from a string to an < code > Int< / code > < / p >
< pre class = 'rust rust-example-rendered' >
< span class = 'kw' > let< / span > < span class = 'ident' > i< / span > < span class = 'op' > =< / span > < span class = 'ident' > Int< / span > ::< span class = 'ident' > from_str< / span > (< span class = 'string' > " 123456789" < / span > ).< span class = 'ident' > unwrap< / span > ();< / pre > < / li >
< / ul >
< h2 id = 'output' class = 'section-header' > < a href = '#output' > Output< / a > < / h2 >
< p > < code > Int< / code > supports all the formatting traits, allowing it to be used just like a regular integer
when used in < code > format!< / code > and similar macros. < code > Int< / code > also supports conversion to primitive integer
types, truncating if the < code > Int< / code > cannot fit into the target type. Conversion to primtive integers
is done with the < code > From< / code > trait:< / p >
< pre class = 'rust rust-example-rendered' >
< span class = 'kw' > let< / span > < span class = 'ident' > big_i< / span > < span class = 'op' > =< / span > < span class = 'ident' > Int< / span > ::< span class = 'ident' > from< / span > (< span class = 'number' > 123456789< / span > );
< span class = 'kw' > let< / span > < span class = 'ident' > i< / span > < span class = 'op' > =< / span > < span class = 'ident' > i32< / span > ::< span class = 'ident' > from< / span > (< span class = 'kw-2' > & < / span > < span class = 'ident' > big_i< / span > );
< span class = 'macro' > assert_eq< / span > < span class = 'macro' > !< / span > (< span class = 'number' > 123456789< / span > , < span class = 'ident' > i< / span > );< / pre >
< h2 id = 'usage' class = 'section-header' > < a href = '#usage' > Usage< / a > < / h2 >
< p > < code > Int< / code > has a number of operator overloads to make working with them as painless as possible.< / p >
< p > The most basic usage is simply < code > a + b< / code > or similar. Assuming < code > a< / code > and < code > b< / code > are of type < code > Int< / code > , this
operation will consume both operands, reusing the storage from one of them. If you do not wish
your operands to be moved, one or both of them can be references: < code > & a + & b< / code > works as well, but
requires an entire new < code > Int< / code > to be allocated for the return value.< / p >
< p > There are also a overloads for a small number of primitive integer types, namely < code > i32< / code > and
< code > usize< / code > . While automatic type widening isn' t done in Rust in general, many operations are much
more efficient when working with a single integer. This means you can do < code > a + 1< / code > knowing that it
will be performed as efficiently as possible. Comparison with these integer types is also
possible, allowing checks for small constant values to be done easily:< / p >
< pre class = 'rust rust-example-rendered' >
< span class = 'kw' > let< / span > < span class = 'ident' > big_i< / span > < span class = 'op' > =< / span > < span class = 'ident' > Int< / span > ::< span class = 'ident' > from< / span > (< span class = 'number' > 123456789< / span > );
< span class = 'macro' > assert< / span > < span class = 'macro' > !< / span > (< span class = 'ident' > big_i< / span > < span class = 'op' > ==< / span > < span class = 'number' > 123456789< / span > );< / pre >
< h3 id = 'semantics' class = 'section-header' > < a href = '#semantics' > Semantics< / a > < / h3 >
< p > Addition, subtraction and multiplication follow the expected rules for integers. Division of two
integers, < code > N / D< / code > is defined as producing two values: a quotient, < code > Q< / code > , and a remainder, < code > R< / code > ,
such that the following equation holds: < code > N = Q*D + R< / code > . The division operator itself returns < code > Q< / code >
while the remainder/modulo operator returns < code > R< / code > .< / p >
< p > The " bit-shift" operations are defined as being multiplication and division by a power-of-two for
shift-left and shift-right respectively. The sign of the number is unaffected.< / p >
< p > The remaining bitwise operands act as if the numbers are stored in two' s complement format and as
if the two inputs have the same number of bits.< / p >
2016-05-10 23:34:09 -04:00
< / div > < h2 id = 'methods' > Methods< / h2 > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1313' class = 'srclink' href = '../../src/ramp/int.rs.html#125-827' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.zero' class = 'method' > < code > fn < a href = '#method.zero' class = 'fnname' > zero< / a > () -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.one' class = 'method' > < code > fn < a href = '#method.one' class = 'fnname' > one< / a > () -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
< h4 id = 'method.from_single_limb' class = 'method' > < code > fn < a href = '#method.from_single_limb' class = 'fnname' > from_single_limb< / a > (limb: < a class = 'struct' href = '../../ramp/ll/limb/struct.Limb.html' title = 'ramp::ll::limb::Limb' > Limb< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
< div class = 'docblock' > < p > Creates a new Int from the given Limb.< / p >
< / div > < h4 id = 'method.sign' class = 'method' > < code > fn < a href = '#method.sign' class = 'fnname' > sign< / a > (& self) -> < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > < / code > < / h4 >
< div class = 'docblock' > < p > Returns the sign of the Int as either -1, 0 or 1 for self being negative, zero
or positive, respectively.< / p >
< / div > < h4 id = 'method.abs' class = 'method' > < code > fn < a href = '#method.abs' class = 'fnname' > abs< / a > (self) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
< div class = 'docblock' > < p > Consumes self and returns the absolute value< / p >
< / div > < h4 id = 'method.to_single_limb' class = 'method' > < code > fn < a href = '#method.to_single_limb' class = 'fnname' > to_single_limb< / a > (& self) -> < a class = 'struct' href = '../../ramp/ll/limb/struct.Limb.html' title = 'ramp::ll::limb::Limb' > Limb< / a > < / code > < / h4 >
< div class = 'docblock' > < p > Returns the least-significant limb of self.< / p >
< / div > < h4 id = 'method.abs_cmp' class = 'method' > < code > fn < a href = '#method.abs_cmp' class = 'fnname' > abs_cmp< / a > (& self, other: & < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > ) -> < a class = 'enum' href = 'https://doc.rust-lang.org/nightly/core/cmp/enum.Ordering.html' title = 'core::cmp::Ordering' > Ordering< / a > < / code > < / h4 >
< div class = 'docblock' > < p > Compare the absolute value of self to the absolute value of other,
returning an Ordering with the result.< / p >
< / div > < h4 id = 'method.shrink_to_fit' class = 'method' > < code > fn < a href = '#method.shrink_to_fit' class = 'fnname' > shrink_to_fit< / a > (& mut self)< / code > < / h4 >
< div class = 'docblock' > < p > Try to shrink the allocated data for this Int.< / p >
< / div > < h4 id = 'method.to_str_radix' class = 'method' > < code > fn < a href = '#method.to_str_radix' class = 'fnname' > to_str_radix< / a > (& self, base: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.u8.html' > u8< / a > , upper: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.bool.html' > bool< / a > ) -> < a class = 'struct' href = 'https://doc.rust-lang.org/nightly/collections/string/struct.String.html' title = 'collections::string::String' > String< / a > < / code > < / h4 >
< div class = 'docblock' > < p > Returns a string containing the value of self in base < code > base< / code > . For bases greater than
ten, if < code > upper< / code > is true, upper-case letters are used, otherwise lower-case ones are used.< / p >
< p > Panics if < code > base< / code > is less than two or greater than 36.< / p >
< / div > < h4 id = 'method.write_radix' class = 'method' > < code > fn < a href = '#method.write_radix' class = 'fnname' > write_radix< / a > < W: < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/std/io/trait.Write.html' title = 'std::io::Write' > Write< / a > > (& self, w: & mut W, base: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.u8.html' > u8< / a > , upper: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.bool.html' > bool< / a > ) -> < a class = 'type' href = 'https://doc.rust-lang.org/nightly/std/io/error/type.Result.html' title = 'std::io::error::Result' > Result< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.tuple.html' > ()< / a > > < / code > < / h4 >
< h4 id = 'method.from_str_radix' class = 'method' > < code > fn < a href = '#method.from_str_radix' class = 'fnname' > from_str_radix< / a > (src: & < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.str.html' > str< / a > , base: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.u8.html' > u8< / a > ) -> < a class = 'enum' href = 'https://doc.rust-lang.org/nightly/core/result/enum.Result.html' title = 'core::result::Result' > Result< / a > < < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > , < a class = 'struct' href = '../../ramp/int/struct.ParseIntError.html' title = 'ramp::int::ParseIntError' > ParseIntError< / a > > < / code > < / h4 >
< div class = 'docblock' > < p > Creates a new Int from the given string in base < code > base< / code > .< / p >
< / div > < h4 id = 'method.divmod' class = 'method' > < code > fn < a href = '#method.divmod' class = 'fnname' > divmod< / a > (& self, other: & < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > ) -> < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.tuple.html' > (< / a > < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > , < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.tuple.html' > )< / a > < / code > < / h4 >
< div class = 'docblock' > < p > Divide self by other, returning the quotient, Q, and remainder, R as (Q, R).< / p >
< p > With N = self, D = other, Q and R satisfy: < code > N = QD + R< / code > .< / p >
< p > This will panic if < code > other< / code > is zero.< / p >
< / div > < h4 id = 'method.pow' class = 'method' > < code > fn < a href = '#method.pow' class = 'fnname' > pow< / a > (& self, exp: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
< div class = 'docblock' > < p > Raises self to the power of exp< / p >
< / div > < h4 id = 'method.square' class = 'method' > < code > fn < a href = '#method.square' class = 'fnname' > square< / a > (& self) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
< div class = 'docblock' > < p > Returns the square of < code > self< / code > .< / p >
< / div > < h4 id = 'method.dsquare' class = 'method' > < code > fn < a href = '#method.dsquare' class = 'fnname' > dsquare< / a > (self) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
< h4 id = 'method.sqrt_rem' class = 'method' > < code > fn < a href = '#method.sqrt_rem' class = 'fnname' > sqrt_rem< / a > (self) -> < a class = 'enum' href = 'https://doc.rust-lang.org/nightly/core/option/enum.Option.html' title = 'core::option::Option' > Option< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.tuple.html' > (< / a > < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > , < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.tuple.html' > )< / a > > < / code > < / h4 >
< div class = 'docblock' > < p > Compute the sqrt of this number, returning its floor, S, and the
remainder, R, as Some((S, R)), or None if this number is negative.< / p >
< p > The numbers S, R are both positive and satisfy < code > self = S * S + R< / code > .< / p >
< / div > < h4 id = 'method.negate' class = 'method' > < code > fn < a href = '#method.negate' class = 'fnname' > negate< / a > (& mut self)< / code > < / h4 >
< div class = 'docblock' > < p > Negates < code > self< / code > in-place< / p >
< / div > < h4 id = 'method.is_even' class = 'method' > < code > fn < a href = '#method.is_even' class = 'fnname' > is_even< / a > (& self) -> < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.bool.html' > bool< / a > < / code > < / h4 >
< div class = 'docblock' > < p > Returns whether or not this number is even.< / p >
< p > Returns 0 if < code > self == 0< / code > < / p >
< / div > < h4 id = 'method.trailing_zeros' class = 'method' > < code > fn < a href = '#method.trailing_zeros' class = 'fnname' > trailing_zeros< / a > (& self) -> < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.u32.html' > u32< / a > < / code > < / h4 >
< div class = 'docblock' > < p > Returns the number of trailing zero bits in this number< / p >
< p > Returns 0 if < code > self == 0< / code > < / p >
< / div > < h4 id = 'method.count_ones' class = 'method' > < code > fn < a href = '#method.count_ones' class = 'fnname' > count_ones< / a > (& self) -> < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > < / code > < / h4 >
< div class = 'docblock' > < p > Returns the number of ones (the population count) in this number< / p >
< p > If this number is negative, it has infinitely many ones (in
two' s complement), so this returns usize::MAX.< / p >
< / div > < h4 id = 'method.bit_length' class = 'method' > < code > fn < a href = '#method.bit_length' class = 'fnname' > bit_length< / a > (& self) -> < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.u32.html' > u32< / a > < / code > < / h4 >
< div class = 'docblock' > < p > Returns the number of bits required to represent (the absolute
value of) this number, that is, < code > floor(log2(abs(self))) + 1< / code > .< / p >
< p > Returns 1 if < code > self == 0< / code > .< / p >
< / div > < h4 id = 'method.bit' class = 'method' > < code > fn < a href = '#method.bit' class = 'fnname' > bit< / a > (& self, bit: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.u32.html' > u32< / a > ) -> < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.bool.html' > bool< / a > < / code > < / h4 >
< div class = 'docblock' > < p > Returns the value of the < code > bit< / code > th bit in this number, as if it
were represented in two' s complement.< / p >
< / div > < h4 id = 'method.set_bit' class = 'method' > < code > fn < a href = '#method.set_bit' class = 'fnname' > set_bit< / a > (& mut self, bit: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.u32.html' > u32< / a > , bit_val: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.bool.html' > bool< / a > )< / code > < / h4 >
< div class = 'docblock' > < p > Set the < code > bit< / code > th bit of this number to < code > bit_val< / code > , treating
negative numbers as if they' re stored in two' s complement.< / p >
< / div > < h4 id = 'method.gcd' class = 'method' > < code > fn < a href = '#method.gcd' class = 'fnname' > gcd< / a > (& self, other: & < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
< div class = 'docblock' > < p > Calculates the Greatest Common Divisor (GCD) of the number and < code > other< / code > .< / p >
< p > The result is always positive.< / p >
< / div > < h4 id = 'method.lcm' class = 'method' > < code > fn < a href = '#method.lcm' class = 'fnname' > lcm< / a > (& self, other: & < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
< div class = 'docblock' > < p > Calculates the Lowest Common Multiple (LCM) of the number and < code > other< / code > .< / p >
2016-05-10 23:34:09 -04:00
< / div > < / div > < h2 id = 'implementations' > Trait Implementations< / h2 > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html' title = 'core::clone::Clone' > Clone< / a > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1508' class = 'srclink' href = '../../src/ramp/int.rs.html#829-859' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.clone' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html#tymethod.clone' class = 'fnname' > clone< / a > (& self) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.clone_from' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html#method.clone_from' class = 'fnname' > clone_from< / a > (& mut self, other: & < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > )< / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/default/trait.Default.html' title = 'core::default::Default' > Default< / a > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1518' class = 'srclink' href = '../../src/ramp/int.rs.html#861-866' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.default' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/default/trait.Default.html#tymethod.default' class = 'fnname' > default< / a > () -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Drop.html' title = 'core::ops::Drop' > Drop< / a > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1520' class = 'srclink' href = '../../src/ramp/int.rs.html#868-879' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.drop' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Drop.html#tymethod.drop' class = 'fnname' > drop< / a > (& mut self)< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html' title = 'core::cmp::PartialEq' > PartialEq< / a > < < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1523' class = 'srclink' href = '../../src/ramp/int.rs.html#881-894' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.eq' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html#tymethod.eq' class = 'fnname' > eq< / a > (& self, other: & < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > ) -> < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.bool.html' > bool< / a > < / code > < / h4 >
< h4 id = 'method.ne' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html#method.ne' class = 'fnname' > ne< / a > (& self, other: & Rhs) -> < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.bool.html' > bool< / a > < / code > < div class = "since" > 1.0.0< / div > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html' title = 'core::cmp::PartialEq' > PartialEq< / a > < < a class = 'struct' href = '../../ramp/ll/limb/struct.Limb.html' title = 'ramp::ll::limb::Limb' > Limb< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1529' class = 'srclink' href = '../../src/ramp/int.rs.html#896-905' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.eq-1' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html#tymethod.eq' class = 'fnname' > eq< / a > (& self, other: & < a class = 'struct' href = '../../ramp/ll/limb/struct.Limb.html' title = 'ramp::ll::limb::Limb' > Limb< / a > ) -> < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.bool.html' > bool< / a > < / code > < / h4 >
< h4 id = 'method.ne-1' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html#method.ne' class = 'fnname' > ne< / a > (& self, other: & Rhs) -> < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.bool.html' > bool< / a > < / code > < div class = "since" > 1.0.0< / div > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.Eq.html' title = 'core::cmp::Eq' > Eq< / a > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1537' class = 'srclink' href = '../../src/ramp/int.rs.html#914' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.Ord.html' title = 'core::cmp::Ord' > Ord< / a > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1538' class = 'srclink' href = '../../src/ramp/int.rs.html#916-939' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.cmp' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.Ord.html#tymethod.cmp' class = 'fnname' > cmp< / a > (& self, other: & < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > ) -> < a class = 'enum' href = 'https://doc.rust-lang.org/nightly/core/cmp/enum.Ordering.html' title = 'core::cmp::Ordering' > Ordering< / a > < / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html' title = 'core::cmp::PartialOrd' > PartialOrd< / a > < < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1542' class = 'srclink' href = '../../src/ramp/int.rs.html#941-945' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.partial_cmp' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html#tymethod.partial_cmp' class = 'fnname' > partial_cmp< / a > (& self, other: & < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > ) -> < a class = 'enum' href = 'https://doc.rust-lang.org/nightly/core/option/enum.Option.html' title = 'core::option::Option' > Option< / a > < < a class = 'enum' href = 'https://doc.rust-lang.org/nightly/core/cmp/enum.Ordering.html' title = 'core::cmp::Ordering' > Ordering< / a > > < / code > < / h4 >
< h4 id = 'method.lt' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html#method.lt' class = 'fnname' > lt< / a > (& self, other: & Rhs) -> < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.bool.html' > bool< / a > < / code > < div class = "since" > 1.0.0< / div > < / h4 >
< h4 id = 'method.le' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html#method.le' class = 'fnname' > le< / a > (& self, other: & Rhs) -> < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.bool.html' > bool< / a > < / code > < div class = "since" > 1.0.0< / div > < / h4 >
< h4 id = 'method.gt' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html#method.gt' class = 'fnname' > gt< / a > (& self, other: & Rhs) -> < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.bool.html' > bool< / a > < / code > < div class = "since" > 1.0.0< / div > < / h4 >
< h4 id = 'method.ge' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html#method.ge' class = 'fnname' > ge< / a > (& self, other: & Rhs) -> < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.bool.html' > bool< / a > < / code > < div class = "since" > 1.0.0< / div > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html' title = 'core::cmp::PartialOrd' > PartialOrd< / a > < < a class = 'struct' href = '../../ramp/ll/limb/struct.Limb.html' title = 'ramp::ll::limb::Limb' > Limb< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1546' class = 'srclink' href = '../../src/ramp/int.rs.html#947-962' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.partial_cmp-1' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html#tymethod.partial_cmp' class = 'fnname' > partial_cmp< / a > (& self, other: & < a class = 'struct' href = '../../ramp/ll/limb/struct.Limb.html' title = 'ramp::ll::limb::Limb' > Limb< / a > ) -> < a class = 'enum' href = 'https://doc.rust-lang.org/nightly/core/option/enum.Option.html' title = 'core::option::Option' > Option< / a > < < a class = 'enum' href = 'https://doc.rust-lang.org/nightly/core/cmp/enum.Ordering.html' title = 'core::cmp::Ordering' > Ordering< / a > > < / code > < / h4 >
< h4 id = 'method.lt-1' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html#method.lt' class = 'fnname' > lt< / a > (& self, other: & Rhs) -> < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.bool.html' > bool< / a > < / code > < div class = "since" > 1.0.0< / div > < / h4 >
< h4 id = 'method.le-1' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html#method.le' class = 'fnname' > le< / a > (& self, other: & Rhs) -> < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.bool.html' > bool< / a > < / code > < div class = "since" > 1.0.0< / div > < / h4 >
< h4 id = 'method.gt-1' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html#method.gt' class = 'fnname' > gt< / a > (& self, other: & Rhs) -> < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.bool.html' > bool< / a > < / code > < div class = "since" > 1.0.0< / div > < / h4 >
< h4 id = 'method.ge-1' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html#method.ge' class = 'fnname' > ge< / a > (& self, other: & Rhs) -> < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.bool.html' > bool< / a > < / code > < div class = "since" > 1.0.0< / div > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/hash/trait.Hash.html' title = 'core::hash::Hash' > Hash< / a > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1556' class = 'srclink' href = '../../src/ramp/int.rs.html#971-987' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.hash' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/hash/trait.Hash.html#tymethod.hash' class = 'fnname' > hash< / a > < H> (& self, state: & mut H) < span class = 'where' > where H: < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/hash/trait.Hasher.html' title = 'core::hash::Hasher' > Hasher< / a > < / span > < / code > < / h4 >
< h4 id = 'method.hash_slice' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/hash/trait.Hash.html#method.hash_slice' class = 'fnname' > hash_slice< / a > < H> (data: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.slice.html' > & [Self]< / a > , state: & mut H) < span class = 'where' > where H: < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/hash/trait.Hasher.html' title = 'core::hash::Hasher' > Hasher< / a > < / span > < / code > < div class = "since" > 1.3.0< / div > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.AddAssign.html' title = 'core::ops::AddAssign' > AddAssign< / a > < < a class = 'struct' href = '../../ramp/ll/limb/struct.Limb.html' title = 'ramp::ll::limb::Limb' > Limb< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1565' class = 'srclink' href = '../../src/ramp/int.rs.html#989-1031' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.add_assign' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.AddAssign.html#tymethod.add_assign' class = 'fnname' > add_assign< / a > (& mut self, other: < a class = 'struct' href = '../../ramp/ll/limb/struct.Limb.html' title = 'ramp::ll::limb::Limb' > Limb< / a > )< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Add.html' title = 'core::ops::Add' > Add< / a > < < a class = 'struct' href = '../../ramp/ll/limb/struct.Limb.html' title = 'ramp::ll::limb::Limb' > Limb< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1575' class = 'srclink' href = '../../src/ramp/int.rs.html#1033-1041' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Add.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.add' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Add.html#tymethod.add' class = 'fnname' > add< / a > (self, other: < a class = 'struct' href = '../../ramp/ll/limb/struct.Limb.html' title = 'ramp::ll::limb::Limb' > Limb< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.AddAssign.html' title = 'core::ops::AddAssign' > AddAssign< / a > < & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1580' class = 'srclink' href = '../../src/ramp/int.rs.html#1043-1129' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.add_assign-1' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.AddAssign.html#tymethod.add_assign' class = 'fnname' > add_assign< / a > (& mut self, other: & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > )< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Add.html' title = 'core::ops::Add' > Add< / a > < & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1602' class = 'srclink' href = '../../src/ramp/int.rs.html#1131-1139' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-1' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Add.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.add-1' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Add.html#tymethod.add' class = 'fnname' > add< / a > (self, other: & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Add.html' title = 'core::ops::Add' > Add< / a > < < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > for & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1608' class = 'srclink' href = '../../src/ramp/int.rs.html#1141-1149' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-2' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Add.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.add-2' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Add.html#tymethod.add' class = 'fnname' > add< / a > (self, other: < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Add.html' title = 'core::ops::Add' > Add< / a > < < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1614' class = 'srclink' href = '../../src/ramp/int.rs.html#1151-1172' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-3' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Add.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.add-3' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Add.html#tymethod.add' class = 'fnname' > add< / a > (self, other: < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.AddAssign.html' title = 'core::ops::AddAssign' > AddAssign< / a > < < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1621' class = 'srclink' href = '../../src/ramp/int.rs.html#1174-1190' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.add_assign-2' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.AddAssign.html#tymethod.add_assign' class = 'fnname' > add_assign< / a > (& mut self, other: < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > )< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a, 'b> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Add.html' title = 'core::ops::Add' > Add< / a > < & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > for & 'b < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1625' class = 'srclink' href = '../../src/ramp/int.rs.html#1192-1211' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-4' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Add.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.add-4' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Add.html#tymethod.add' class = 'fnname' > add< / a > (self, other: & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.SubAssign.html' title = 'core::ops::SubAssign' > SubAssign< / a > < < a class = 'struct' href = '../../ramp/ll/limb/struct.Limb.html' title = 'ramp::ll::limb::Limb' > Limb< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1632' class = 'srclink' href = '../../src/ramp/int.rs.html#1213-1259' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.sub_assign' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.SubAssign.html#tymethod.sub_assign' class = 'fnname' > sub_assign< / a > (& mut self, other: < a class = 'struct' href = '../../ramp/ll/limb/struct.Limb.html' title = 'ramp::ll::limb::Limb' > Limb< / a > )< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html' title = 'core::ops::Sub' > Sub< / a > < < a class = 'struct' href = '../../ramp/ll/limb/struct.Limb.html' title = 'ramp::ll::limb::Limb' > Limb< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1643' class = 'srclink' href = '../../src/ramp/int.rs.html#1261-1269' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-5' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.sub' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html#tymethod.sub' class = 'fnname' > sub< / a > (self, other: < a class = 'struct' href = '../../ramp/ll/limb/struct.Limb.html' title = 'ramp::ll::limb::Limb' > Limb< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.SubAssign.html' title = 'core::ops::SubAssign' > SubAssign< / a > < & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1648' class = 'srclink' href = '../../src/ramp/int.rs.html#1271-1349' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.sub_assign-1' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.SubAssign.html#tymethod.sub_assign' class = 'fnname' > sub_assign< / a > (& mut self, other: & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > )< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html' title = 'core::ops::Sub' > Sub< / a > < & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1669' class = 'srclink' href = '../../src/ramp/int.rs.html#1351-1359' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-6' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.sub-1' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html#tymethod.sub' class = 'fnname' > sub< / a > (self, other: & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html' title = 'core::ops::Sub' > Sub< / a > < < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > for & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1675' class = 'srclink' href = '../../src/ramp/int.rs.html#1361-1376' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-7' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.sub-2' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html#tymethod.sub' class = 'fnname' > sub< / a > (self, other: < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html' title = 'core::ops::Sub' > Sub< / a > < < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1681' class = 'srclink' href = '../../src/ramp/int.rs.html#1378-1392' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-8' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.sub-3' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html#tymethod.sub' class = 'fnname' > sub< / a > (self, other: < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.SubAssign.html' title = 'core::ops::SubAssign' > SubAssign< / a > < < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1686' class = 'srclink' href = '../../src/ramp/int.rs.html#1394-1406' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.sub_assign-2' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.SubAssign.html#tymethod.sub_assign' class = 'fnname' > sub_assign< / a > (& mut self, other: < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > )< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a, 'b> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html' title = 'core::ops::Sub' > Sub< / a > < & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > for & 'b < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1690' class = 'srclink' href = '../../src/ramp/int.rs.html#1408-1422' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-9' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.sub-4' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html#tymethod.sub' class = 'fnname' > sub< / a > (self, other: & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.MulAssign.html' title = 'core::ops::MulAssign' > MulAssign< / a > < < a class = 'struct' href = '../../ramp/ll/limb/struct.Limb.html' title = 'ramp::ll::limb::Limb' > Limb< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1697' class = 'srclink' href = '../../src/ramp/int.rs.html#1424-1446' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.mul_assign' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.MulAssign.html#tymethod.mul_assign' class = 'fnname' > mul_assign< / a > (& mut self, other: < a class = 'struct' href = '../../ramp/ll/limb/struct.Limb.html' title = 'ramp::ll::limb::Limb' > Limb< / a > )< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html' title = 'core::ops::Mul' > Mul< / a > < < a class = 'struct' href = '../../ramp/ll/limb/struct.Limb.html' title = 'ramp::ll::limb::Limb' > Limb< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1703' class = 'srclink' href = '../../src/ramp/int.rs.html#1448-1456' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-10' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.mul' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html#tymethod.mul' class = 'fnname' > mul< / a > (self, other: < a class = 'struct' href = '../../ramp/ll/limb/struct.Limb.html' title = 'ramp::ll::limb::Limb' > Limb< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a, 'b> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html' title = 'core::ops::Mul' > Mul< / a > < & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > for & 'b < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1708' class = 'srclink' href = '../../src/ramp/int.rs.html#1458-1506' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-11' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.mul-1' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html#tymethod.mul' class = 'fnname' > mul< / a > (self, other: & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html' title = 'core::ops::Mul' > Mul< / a > < & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1728' class = 'srclink' href = '../../src/ramp/int.rs.html#1508-1529' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-12' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.mul-2' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html#tymethod.mul' class = 'fnname' > mul< / a > (self, other: & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html' title = 'core::ops::Mul' > Mul< / a > < < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > for & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1735' class = 'srclink' href = '../../src/ramp/int.rs.html#1531-1539' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-13' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.mul-3' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html#tymethod.mul' class = 'fnname' > mul< / a > (self, other: < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html' title = 'core::ops::Mul' > Mul< / a > < < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1741' class = 'srclink' href = '../../src/ramp/int.rs.html#1541-1569' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-14' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.mul-4' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html#tymethod.mul' class = 'fnname' > mul< / a > (self, other: < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.MulAssign.html' title = 'core::ops::MulAssign' > MulAssign< / a > < & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1750' class = 'srclink' href = '../../src/ramp/int.rs.html#1571-1584' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.mul_assign-1' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.MulAssign.html#tymethod.mul_assign' class = 'fnname' > mul_assign< / a > (& mut self, other: & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > )< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.MulAssign.html' title = 'core::ops::MulAssign' > MulAssign< / a > < < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1756' class = 'srclink' href = '../../src/ramp/int.rs.html#1586-1599' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.mul_assign-2' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.MulAssign.html#tymethod.mul_assign' class = 'fnname' > mul_assign< / a > (& mut self, other: < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > )< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.DivAssign.html' title = 'core::ops::DivAssign' > DivAssign< / a > < < a class = 'struct' href = '../../ramp/ll/limb/struct.Limb.html' title = 'ramp::ll::limb::Limb' > Limb< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1761' class = 'srclink' href = '../../src/ramp/int.rs.html#1601-1618' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.div_assign' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.DivAssign.html#tymethod.div_assign' class = 'fnname' > div_assign< / a > (& mut self, other: < a class = 'struct' href = '../../ramp/ll/limb/struct.Limb.html' title = 'ramp::ll::limb::Limb' > Limb< / a > )< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Div.html' title = 'core::ops::Div' > Div< / a > < < a class = 'struct' href = '../../ramp/ll/limb/struct.Limb.html' title = 'ramp::ll::limb::Limb' > Limb< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1766' class = 'srclink' href = '../../src/ramp/int.rs.html#1620-1628' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-15' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Div.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.div' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Div.html#tymethod.div' class = 'fnname' > div< / a > (self, other: < a class = 'struct' href = '../../ramp/ll/limb/struct.Limb.html' title = 'ramp::ll::limb::Limb' > Limb< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a, 'b> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Div.html' title = 'core::ops::Div' > Div< / a > < & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > for & 'b < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1771' class = 'srclink' href = '../../src/ramp/int.rs.html#1630-1649' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-16' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Div.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.div-1' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Div.html#tymethod.div' class = 'fnname' > div< / a > (self, other: & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Div.html' title = 'core::ops::Div' > Div< / a > < & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1783' class = 'srclink' href = '../../src/ramp/int.rs.html#1651-1658' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-17' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Div.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.div-2' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Div.html#tymethod.div' class = 'fnname' > div< / a > (self, other: & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Div.html' title = 'core::ops::Div' > Div< / a > < < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > for & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1789' class = 'srclink' href = '../../src/ramp/int.rs.html#1660-1667' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-18' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Div.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.div-3' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Div.html#tymethod.div' class = 'fnname' > div< / a > (self, other: < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Div.html' title = 'core::ops::Div' > Div< / a > < < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1795' class = 'srclink' href = '../../src/ramp/int.rs.html#1669-1676' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-19' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Div.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.div-4' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Div.html#tymethod.div' class = 'fnname' > div< / a > (self, other: < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.DivAssign.html' title = 'core::ops::DivAssign' > DivAssign< / a > < & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1800' class = 'srclink' href = '../../src/ramp/int.rs.html#1678-1684' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.div_assign-1' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.DivAssign.html#tymethod.div_assign' class = 'fnname' > div_assign< / a > (& mut self, other: & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > )< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.DivAssign.html' title = 'core::ops::DivAssign' > DivAssign< / a > < < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1806' class = 'srclink' href = '../../src/ramp/int.rs.html#1686-1692' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.div_assign-2' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.DivAssign.html#tymethod.div_assign' class = 'fnname' > div_assign< / a > (& mut self, other: < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > )< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Rem.html' title = 'core::ops::Rem' > Rem< / a > < < a class = 'struct' href = '../../ramp/ll/limb/struct.Limb.html' title = 'ramp::ll::limb::Limb' > Limb< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1811' class = 'srclink' href = '../../src/ramp/int.rs.html#1694-1702' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-20' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Rem.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.rem' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Rem.html#tymethod.rem' class = 'fnname' > rem< / a > (self, other: < a class = 'struct' href = '../../ramp/ll/limb/struct.Limb.html' title = 'ramp::ll::limb::Limb' > Limb< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.RemAssign.html' title = 'core::ops::RemAssign' > RemAssign< / a > < < a class = 'struct' href = '../../ramp/ll/limb/struct.Limb.html' title = 'ramp::ll::limb::Limb' > Limb< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1816' class = 'srclink' href = '../../src/ramp/int.rs.html#1704-1734' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.rem_assign' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.RemAssign.html#tymethod.rem_assign' class = 'fnname' > rem_assign< / a > (& mut self, other: < a class = 'struct' href = '../../ramp/ll/limb/struct.Limb.html' title = 'ramp::ll::limb::Limb' > Limb< / a > )< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a, 'b> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Rem.html' title = 'core::ops::Rem' > Rem< / a > < & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > for & 'b < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1823' class = 'srclink' href = '../../src/ramp/int.rs.html#1739-1755' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-21' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Rem.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.rem-1' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Rem.html#tymethod.rem' class = 'fnname' > rem< / a > (self, other: & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Rem.html' title = 'core::ops::Rem' > Rem< / a > < & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1833' class = 'srclink' href = '../../src/ramp/int.rs.html#1757-1764' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-22' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Rem.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.rem-2' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Rem.html#tymethod.rem' class = 'fnname' > rem< / a > (self, other: & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Rem.html' title = 'core::ops::Rem' > Rem< / a > < < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > for & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1839' class = 'srclink' href = '../../src/ramp/int.rs.html#1766-1773' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-23' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Rem.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.rem-3' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Rem.html#tymethod.rem' class = 'fnname' > rem< / a > (self, other: < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Rem.html' title = 'core::ops::Rem' > Rem< / a > < < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1845' class = 'srclink' href = '../../src/ramp/int.rs.html#1775-1782' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-24' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Rem.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.rem-4' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Rem.html#tymethod.rem' class = 'fnname' > rem< / a > (self, other: < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.RemAssign.html' title = 'core::ops::RemAssign' > RemAssign< / a > < < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1850' class = 'srclink' href = '../../src/ramp/int.rs.html#1784-1790' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.rem_assign-1' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.RemAssign.html#tymethod.rem_assign' class = 'fnname' > rem_assign< / a > (& mut self, other: < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > )< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.RemAssign.html' title = 'core::ops::RemAssign' > RemAssign< / a > < & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1855' class = 'srclink' href = '../../src/ramp/int.rs.html#1791-1797' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.rem_assign-2' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.RemAssign.html#tymethod.rem_assign' class = 'fnname' > rem_assign< / a > (& mut self, other: & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > )< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Neg.html' title = 'core::ops::Neg' > Neg< / a > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1861' class = 'srclink' href = '../../src/ramp/int.rs.html#1799-1808' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-25' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Neg.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.neg' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Neg.html#tymethod.neg' class = 'fnname' > neg< / a > (self) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Neg.html' title = 'core::ops::Neg' > Neg< / a > for & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1866' class = 'srclink' href = '../../src/ramp/int.rs.html#1810-1817' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-26' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Neg.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.neg-1' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Neg.html#tymethod.neg' class = 'fnname' > neg< / a > (self) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.ShlAssign.html' title = 'core::ops::ShlAssign' > ShlAssign< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1871' class = 'srclink' href = '../../src/ramp/int.rs.html#1819-1858' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.shl_assign' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.ShlAssign.html#tymethod.shl_assign' class = 'fnname' > shl_assign< / a > (& mut self, cnt: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > )< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Shl.html' title = 'core::ops::Shl' > Shl< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > > for & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1885' class = 'srclink' href = '../../src/ramp/int.rs.html#1860-1869' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-27' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Shl.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.shl' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Shl.html#tymethod.shl' class = 'fnname' > shl< / a > (self, cnt: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Shl.html' title = 'core::ops::Shl' > Shl< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1892' class = 'srclink' href = '../../src/ramp/int.rs.html#1871-1879' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-28' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Shl.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.shl-1' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Shl.html#tymethod.shl' class = 'fnname' > shl< / a > (self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.ShrAssign.html' title = 'core::ops::ShrAssign' > ShrAssign< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1897' class = 'srclink' href = '../../src/ramp/int.rs.html#1881-1923' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.shr_assign' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.ShrAssign.html#tymethod.shr_assign' class = 'fnname' > shr_assign< / a > (& mut self, cnt: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > )< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Shr.html' title = 'core::ops::Shr' > Shr< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > > for & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1911' class = 'srclink' href = '../../src/ramp/int.rs.html#1925-1934' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-29' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Shr.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.shr' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Shr.html#tymethod.shr' class = 'fnname' > shr< / a > (self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Shr.html' title = 'core::ops::Shr' > Shr< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1918' class = 'srclink' href = '../../src/ramp/int.rs.html#1936-1944' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-30' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Shr.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.shr-1' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Shr.html#tymethod.shr' class = 'fnname' > shr< / a > (self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitAnd.html' title = 'core::ops::BitAnd' > BitAnd< / a > < < a class = 'struct' href = '../../ramp/ll/limb/struct.Limb.html' title = 'ramp::ll::limb::Limb' > Limb< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1977' class = 'srclink' href = '../../src/ramp/int.rs.html#2150-2157' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-31' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitAnd.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.bitand' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitAnd.html#tymethod.bitand' class = 'fnname' > bitand< / a > (self, other: < a class = 'struct' href = '../../ramp/ll/limb/struct.Limb.html' title = 'ramp::ll::limb::Limb' > Limb< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitAndAssign.html' title = 'core::ops::BitAndAssign' > BitAndAssign< / a > < < a class = 'struct' href = '../../ramp/ll/limb/struct.Limb.html' title = 'ramp::ll::limb::Limb' > Limb< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1983' class = 'srclink' href = '../../src/ramp/int.rs.html#2159-2163' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.bitand_assign' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitAndAssign.html#tymethod.bitand_assign' class = 'fnname' > bitand_assign< / a > (& mut self, other: < a class = 'struct' href = '../../ramp/ll/limb/struct.Limb.html' title = 'ramp::ll::limb::Limb' > Limb< / a > )< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitAnd.html' title = 'core::ops::BitAnd' > BitAnd< / a > < & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1987' class = 'srclink' href = '../../src/ramp/int.rs.html#2165-2175' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-32' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitAnd.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.bitand-1' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitAnd.html#tymethod.bitand' class = 'fnname' > bitand< / a > (self, other: & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitAnd.html' title = 'core::ops::BitAnd' > BitAnd< / a > < < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > for & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1993' class = 'srclink' href = '../../src/ramp/int.rs.html#2177-2184' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-33' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitAnd.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.bitand-2' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitAnd.html#tymethod.bitand' class = 'fnname' > bitand< / a > (self, other: < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a, 'b> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitAnd.html' title = 'core::ops::BitAnd' > BitAnd< / a > < & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > for & 'b < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-1999' class = 'srclink' href = '../../src/ramp/int.rs.html#2186-2193' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-34' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitAnd.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.bitand-3' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitAnd.html#tymethod.bitand' class = 'fnname' > bitand< / a > (self, other: & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitAnd.html' title = 'core::ops::BitAnd' > BitAnd< / a > < < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2006' class = 'srclink' href = '../../src/ramp/int.rs.html#2195-2205' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-35' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitAnd.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.bitand-4' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitAnd.html#tymethod.bitand' class = 'fnname' > bitand< / a > (self, other: < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitAndAssign.html' title = 'core::ops::BitAndAssign' > BitAndAssign< / a > < < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2011' class = 'srclink' href = '../../src/ramp/int.rs.html#2207-2215' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.bitand_assign-1' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitAndAssign.html#tymethod.bitand_assign' class = 'fnname' > bitand_assign< / a > (& mut self, other: < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > )< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitAndAssign.html' title = 'core::ops::BitAndAssign' > BitAndAssign< / a > < & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2016' class = 'srclink' href = '../../src/ramp/int.rs.html#2216-2224' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.bitand_assign-2' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitAndAssign.html#tymethod.bitand_assign' class = 'fnname' > bitand_assign< / a > (& mut self, other: & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > )< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitOr.html' title = 'core::ops::BitOr' > BitOr< / a > < < a class = 'struct' href = '../../ramp/ll/limb/struct.Limb.html' title = 'ramp::ll::limb::Limb' > Limb< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2022' class = 'srclink' href = '../../src/ramp/int.rs.html#2226-2233' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-36' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitOr.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.bitor' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitOr.html#tymethod.bitor' class = 'fnname' > bitor< / a > (self, other: < a class = 'struct' href = '../../ramp/ll/limb/struct.Limb.html' title = 'ramp::ll::limb::Limb' > Limb< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitOrAssign.html' title = 'core::ops::BitOrAssign' > BitOrAssign< / a > < < a class = 'struct' href = '../../ramp/ll/limb/struct.Limb.html' title = 'ramp::ll::limb::Limb' > Limb< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2027' class = 'srclink' href = '../../src/ramp/int.rs.html#2235-2239' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.bitor_assign' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitOrAssign.html#tymethod.bitor_assign' class = 'fnname' > bitor_assign< / a > (& mut self, other: < a class = 'struct' href = '../../ramp/ll/limb/struct.Limb.html' title = 'ramp::ll::limb::Limb' > Limb< / a > )< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitOr.html' title = 'core::ops::BitOr' > BitOr< / a > < & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2031' class = 'srclink' href = '../../src/ramp/int.rs.html#2241-2251' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-37' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitOr.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.bitor-1' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitOr.html#tymethod.bitor' class = 'fnname' > bitor< / a > (self, other: & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitOr.html' title = 'core::ops::BitOr' > BitOr< / a > < < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > for & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2037' class = 'srclink' href = '../../src/ramp/int.rs.html#2253-2260' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-38' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitOr.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.bitor-2' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitOr.html#tymethod.bitor' class = 'fnname' > bitor< / a > (self, other: < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a, 'b> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitOr.html' title = 'core::ops::BitOr' > BitOr< / a > < & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > for & 'b < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2043' class = 'srclink' href = '../../src/ramp/int.rs.html#2262-2269' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-39' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitOr.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.bitor-3' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitOr.html#tymethod.bitor' class = 'fnname' > bitor< / a > (self, other: & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitOr.html' title = 'core::ops::BitOr' > BitOr< / a > < < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2050' class = 'srclink' href = '../../src/ramp/int.rs.html#2271-2282' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-40' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitOr.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.bitor-4' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitOr.html#tymethod.bitor' class = 'fnname' > bitor< / a > (self, other: < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitOrAssign.html' title = 'core::ops::BitOrAssign' > BitOrAssign< / a > < < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2055' class = 'srclink' href = '../../src/ramp/int.rs.html#2284-2292' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.bitor_assign-1' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitOrAssign.html#tymethod.bitor_assign' class = 'fnname' > bitor_assign< / a > (& mut self, other: < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > )< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitOrAssign.html' title = 'core::ops::BitOrAssign' > BitOrAssign< / a > < & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2060' class = 'srclink' href = '../../src/ramp/int.rs.html#2293-2301' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.bitor_assign-2' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitOrAssign.html#tymethod.bitor_assign' class = 'fnname' > bitor_assign< / a > (& mut self, other: & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > )< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitXor.html' title = 'core::ops::BitXor' > BitXor< / a > < < a class = 'struct' href = '../../ramp/ll/limb/struct.Limb.html' title = 'ramp::ll::limb::Limb' > Limb< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2066' class = 'srclink' href = '../../src/ramp/int.rs.html#2303-2310' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-41' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitXor.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.bitxor' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitXor.html#tymethod.bitxor' class = 'fnname' > bitxor< / a > (self, other: < a class = 'struct' href = '../../ramp/ll/limb/struct.Limb.html' title = 'ramp::ll::limb::Limb' > Limb< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitXorAssign.html' title = 'core::ops::BitXorAssign' > BitXorAssign< / a > < < a class = 'struct' href = '../../ramp/ll/limb/struct.Limb.html' title = 'ramp::ll::limb::Limb' > Limb< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2072' class = 'srclink' href = '../../src/ramp/int.rs.html#2312-2316' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.bitxor_assign' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitXorAssign.html#tymethod.bitxor_assign' class = 'fnname' > bitxor_assign< / a > (& mut self, other: < a class = 'struct' href = '../../ramp/ll/limb/struct.Limb.html' title = 'ramp::ll::limb::Limb' > Limb< / a > )< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitXor.html' title = 'core::ops::BitXor' > BitXor< / a > < & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2076' class = 'srclink' href = '../../src/ramp/int.rs.html#2318-2328' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-42' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitXor.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.bitxor-1' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitXor.html#tymethod.bitxor' class = 'fnname' > bitxor< / a > (self, other: & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitXor.html' title = 'core::ops::BitXor' > BitXor< / a > < < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > for & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2082' class = 'srclink' href = '../../src/ramp/int.rs.html#2330-2337' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-43' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitXor.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.bitxor-2' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitXor.html#tymethod.bitxor' class = 'fnname' > bitxor< / a > (self, other: < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a, 'b> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitXor.html' title = 'core::ops::BitXor' > BitXor< / a > < & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > for & 'b < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2088' class = 'srclink' href = '../../src/ramp/int.rs.html#2339-2346' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-44' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitXor.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.bitxor-3' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitXor.html#tymethod.bitxor' class = 'fnname' > bitxor< / a > (self, other: & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitXor.html' title = 'core::ops::BitXor' > BitXor< / a > < < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2095' class = 'srclink' href = '../../src/ramp/int.rs.html#2348-2359' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-45' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitXor.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.bitxor-4' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitXor.html#tymethod.bitxor' class = 'fnname' > bitxor< / a > (self, other: < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitXorAssign.html' title = 'core::ops::BitXorAssign' > BitXorAssign< / a > < < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2100' class = 'srclink' href = '../../src/ramp/int.rs.html#2361-2369' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.bitxor_assign-1' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitXorAssign.html#tymethod.bitxor_assign' class = 'fnname' > bitxor_assign< / a > (& mut self, other: < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > )< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitXorAssign.html' title = 'core::ops::BitXorAssign' > BitXorAssign< / a > < & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2105' class = 'srclink' href = '../../src/ramp/int.rs.html#2370-2378' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.bitxor_assign-2' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitXorAssign.html#tymethod.bitxor_assign' class = 'fnname' > bitxor_assign< / a > (& mut self, other: & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > )< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Add.html' title = 'core::ops::Add' > Add< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2111' class = 'srclink' href = '../../src/ramp/int.rs.html#2384-2397' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-46' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Add.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.add-5' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Add.html#tymethod.add' class = 'fnname' > add< / a > (self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.AddAssign.html' title = 'core::ops::AddAssign' > AddAssign< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2116' class = 'srclink' href = '../../src/ramp/int.rs.html#2399-2408' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.add_assign-3' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.AddAssign.html#tymethod.add_assign' class = 'fnname' > add_assign< / a > (& mut self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > )< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html' title = 'core::ops::Sub' > Sub< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2120' class = 'srclink' href = '../../src/ramp/int.rs.html#2410-2423' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-47' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.sub-5' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html#tymethod.sub' class = 'fnname' > sub< / a > (self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.SubAssign.html' title = 'core::ops::SubAssign' > SubAssign< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2125' class = 'srclink' href = '../../src/ramp/int.rs.html#2425-2434' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.sub_assign-3' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.SubAssign.html#tymethod.sub_assign' class = 'fnname' > sub_assign< / a > (& mut self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > )< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html' title = 'core::ops::Mul' > Mul< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2129' class = 'srclink' href = '../../src/ramp/int.rs.html#2436-2444' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-48' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.mul-5' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html#tymethod.mul' class = 'fnname' > mul< / a > (self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.MulAssign.html' title = 'core::ops::MulAssign' > MulAssign< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2134' class = 'srclink' href = '../../src/ramp/int.rs.html#2446-2460' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.mul_assign-3' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.MulAssign.html#tymethod.mul_assign' class = 'fnname' > mul_assign< / a > (& mut self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > )< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.DivAssign.html' title = 'core::ops::DivAssign' > DivAssign< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2138' class = 'srclink' href = '../../src/ramp/int.rs.html#2462-2480' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.div_assign-3' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.DivAssign.html#tymethod.div_assign' class = 'fnname' > div_assign< / a > (& mut self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > )< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Div.html' title = 'core::ops::Div' > Div< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2142' class = 'srclink' href = '../../src/ramp/int.rs.html#2482-2490' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-49' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Div.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.div-5' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Div.html#tymethod.div' class = 'fnname' > div< / a > (self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.RemAssign.html' title = 'core::ops::RemAssign' > RemAssign< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2147' class = 'srclink' href = '../../src/ramp/int.rs.html#2492-2498' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.rem_assign-3' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.RemAssign.html#tymethod.rem_assign' class = 'fnname' > rem_assign< / a > (& mut self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > )< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Rem.html' title = 'core::ops::Rem' > Rem< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2152' class = 'srclink' href = '../../src/ramp/int.rs.html#2500-2516' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-50' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Rem.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.rem-5' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Rem.html#tymethod.rem' class = 'fnname' > rem< / a > (self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitAndAssign.html' title = 'core::ops::BitAndAssign' > BitAndAssign< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2157' class = 'srclink' href = '../../src/ramp/int.rs.html#2518-2523' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.bitand_assign-3' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitAndAssign.html#tymethod.bitand_assign' class = 'fnname' > bitand_assign< / a > (& mut self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > )< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitOrAssign.html' title = 'core::ops::BitOrAssign' > BitOrAssign< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2161' class = 'srclink' href = '../../src/ramp/int.rs.html#2525-2530' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.bitor_assign-3' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitOrAssign.html#tymethod.bitor_assign' class = 'fnname' > bitor_assign< / a > (& mut self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > )< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitXorAssign.html' title = 'core::ops::BitXorAssign' > BitXorAssign< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2165' class = 'srclink' href = '../../src/ramp/int.rs.html#2532-2537' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.bitxor_assign-3' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitXorAssign.html#tymethod.bitxor_assign' class = 'fnname' > bitxor_assign< / a > (& mut self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > )< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Add.html' title = 'core::ops::Add' > Add< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > > for & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2169' class = 'srclink' href = '../../src/ramp/int.rs.html#2687-2694' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-51' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Add.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.add-6' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Add.html#tymethod.add' class = 'fnname' > add< / a > (self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html' title = 'core::ops::Sub' > Sub< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > > for & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2186' class = 'srclink' href = '../../src/ramp/int.rs.html#2714-2721' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-52' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.sub-6' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html#tymethod.sub' class = 'fnname' > sub< / a > (self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html' title = 'core::ops::Mul' > Mul< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > > for & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2203' class = 'srclink' href = '../../src/ramp/int.rs.html#2741-2748' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-53' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.mul-6' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html#tymethod.mul' class = 'fnname' > mul< / a > (self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Div.html' title = 'core::ops::Div' > Div< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > > for & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2220' class = 'srclink' href = '../../src/ramp/int.rs.html#2770-2780' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-54' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Div.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.div-6' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Div.html#tymethod.div' class = 'fnname' > div< / a > (self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Rem.html' title = 'core::ops::Rem' > Rem< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > > for & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2237' class = 'srclink' href = '../../src/ramp/int.rs.html#2814-2827' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-55' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Rem.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.rem-6' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Rem.html#tymethod.rem' class = 'fnname' > rem< / a > (self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitAnd.html' title = 'core::ops::BitAnd' > BitAnd< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2254' class = 'srclink' href = '../../src/ramp/int.rs.html#2861-2869' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-56' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitAnd.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.bitand-5' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitAnd.html#tymethod.bitand' class = 'fnname' > bitand< / a > (self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitAnd.html' title = 'core::ops::BitAnd' > BitAnd< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > > for & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2259' class = 'srclink' href = '../../src/ramp/int.rs.html#2871-2878' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-57' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitAnd.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.bitand-6' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitAnd.html#tymethod.bitand' class = 'fnname' > bitand< / a > (self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitOr.html' title = 'core::ops::BitOr' > BitOr< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2276' class = 'srclink' href = '../../src/ramp/int.rs.html#2898-2906' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-58' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitOr.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.bitor-5' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitOr.html#tymethod.bitor' class = 'fnname' > bitor< / a > (self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitOr.html' title = 'core::ops::BitOr' > BitOr< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > > for & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2281' class = 'srclink' href = '../../src/ramp/int.rs.html#2908-2915' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-59' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitOr.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.bitor-6' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitOr.html#tymethod.bitor' class = 'fnname' > bitor< / a > (self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitXor.html' title = 'core::ops::BitXor' > BitXor< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2298' class = 'srclink' href = '../../src/ramp/int.rs.html#2935-2943' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-60' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitXor.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.bitxor-5' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitXor.html#tymethod.bitxor' class = 'fnname' > bitxor< / a > (self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitXor.html' title = 'core::ops::BitXor' > BitXor< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > > for & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2303' class = 'srclink' href = '../../src/ramp/int.rs.html#2945-2952' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-61' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitXor.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.bitxor-6' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitXor.html#tymethod.bitxor' class = 'fnname' > bitxor< / a > (self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Add.html' title = 'core::ops::Add' > Add< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2320' class = 'srclink' href = '../../src/ramp/int.rs.html#2542-2552' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-62' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Add.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.add-7' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Add.html#tymethod.add' class = 'fnname' > add< / a > (self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.AddAssign.html' title = 'core::ops::AddAssign' > AddAssign< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2325' class = 'srclink' href = '../../src/ramp/int.rs.html#2554-2561' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.add_assign-4' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.AddAssign.html#tymethod.add_assign' class = 'fnname' > add_assign< / a > (& mut self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > )< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html' title = 'core::ops::Sub' > Sub< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2329' class = 'srclink' href = '../../src/ramp/int.rs.html#2563-2573' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-63' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.sub-7' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html#tymethod.sub' class = 'fnname' > sub< / a > (self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.SubAssign.html' title = 'core::ops::SubAssign' > SubAssign< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2334' class = 'srclink' href = '../../src/ramp/int.rs.html#2575-2582' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.sub_assign-4' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.SubAssign.html#tymethod.sub_assign' class = 'fnname' > sub_assign< / a > (& mut self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > )< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html' title = 'core::ops::Mul' > Mul< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2338' class = 'srclink' href = '../../src/ramp/int.rs.html#2584-2598' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-64' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.mul-7' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html#tymethod.mul' class = 'fnname' > mul< / a > (self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.MulAssign.html' title = 'core::ops::MulAssign' > MulAssign< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2343' class = 'srclink' href = '../../src/ramp/int.rs.html#2600-2609' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.mul_assign-4' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.MulAssign.html#tymethod.mul_assign' class = 'fnname' > mul_assign< / a > (& mut self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > )< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Div.html' title = 'core::ops::Div' > Div< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2347' class = 'srclink' href = '../../src/ramp/int.rs.html#2611-2624' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-65' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Div.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.div-7' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Div.html#tymethod.div' class = 'fnname' > div< / a > (self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.DivAssign.html' title = 'core::ops::DivAssign' > DivAssign< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2352' class = 'srclink' href = '../../src/ramp/int.rs.html#2626-2635' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.div_assign-4' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.DivAssign.html#tymethod.div_assign' class = 'fnname' > div_assign< / a > (& mut self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > )< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Rem.html' title = 'core::ops::Rem' > Rem< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2356' class = 'srclink' href = '../../src/ramp/int.rs.html#2637-2653' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-66' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Rem.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.rem-7' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Rem.html#tymethod.rem' class = 'fnname' > rem< / a > (self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.RemAssign.html' title = 'core::ops::RemAssign' > RemAssign< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2361' class = 'srclink' href = '../../src/ramp/int.rs.html#2654-2659' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.rem_assign-4' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.RemAssign.html#tymethod.rem_assign' class = 'fnname' > rem_assign< / a > (& mut self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > )< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitAndAssign.html' title = 'core::ops::BitAndAssign' > BitAndAssign< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2365' class = 'srclink' href = '../../src/ramp/int.rs.html#2661-2666' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.bitand_assign-4' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitAndAssign.html#tymethod.bitand_assign' class = 'fnname' > bitand_assign< / a > (& mut self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > )< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitOrAssign.html' title = 'core::ops::BitOrAssign' > BitOrAssign< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2369' class = 'srclink' href = '../../src/ramp/int.rs.html#2668-2673' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.bitor_assign-4' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitOrAssign.html#tymethod.bitor_assign' class = 'fnname' > bitor_assign< / a > (& mut self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > )< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitXorAssign.html' title = 'core::ops::BitXorAssign' > BitXorAssign< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2373' class = 'srclink' href = '../../src/ramp/int.rs.html#2675-2680' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.bitxor_assign-4' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitXorAssign.html#tymethod.bitxor_assign' class = 'fnname' > bitxor_assign< / a > (& mut self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > )< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Add.html' title = 'core::ops::Add' > Add< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > > for & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2377' class = 'srclink' href = '../../src/ramp/int.rs.html#2687-2694' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-67' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Add.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.add-8' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Add.html#tymethod.add' class = 'fnname' > add< / a > (self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html' title = 'core::ops::Sub' > Sub< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > > for & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2394' class = 'srclink' href = '../../src/ramp/int.rs.html#2714-2721' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-68' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.sub-8' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html#tymethod.sub' class = 'fnname' > sub< / a > (self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html' title = 'core::ops::Mul' > Mul< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > > for & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2411' class = 'srclink' href = '../../src/ramp/int.rs.html#2741-2748' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-69' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.mul-8' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html#tymethod.mul' class = 'fnname' > mul< / a > (self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Div.html' title = 'core::ops::Div' > Div< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > > for & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2428' class = 'srclink' href = '../../src/ramp/int.rs.html#2770-2780' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-70' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Div.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.div-8' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Div.html#tymethod.div' class = 'fnname' > div< / a > (self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Rem.html' title = 'core::ops::Rem' > Rem< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > > for & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2445' class = 'srclink' href = '../../src/ramp/int.rs.html#2814-2827' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-71' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Rem.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.rem-8' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Rem.html#tymethod.rem' class = 'fnname' > rem< / a > (self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitAnd.html' title = 'core::ops::BitAnd' > BitAnd< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2462' class = 'srclink' href = '../../src/ramp/int.rs.html#2861-2869' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-72' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitAnd.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.bitand-7' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitAnd.html#tymethod.bitand' class = 'fnname' > bitand< / a > (self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitAnd.html' title = 'core::ops::BitAnd' > BitAnd< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > > for & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2467' class = 'srclink' href = '../../src/ramp/int.rs.html#2871-2878' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-73' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitAnd.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.bitand-8' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitAnd.html#tymethod.bitand' class = 'fnname' > bitand< / a > (self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitOr.html' title = 'core::ops::BitOr' > BitOr< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2484' class = 'srclink' href = '../../src/ramp/int.rs.html#2898-2906' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-74' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitOr.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.bitor-7' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitOr.html#tymethod.bitor' class = 'fnname' > bitor< / a > (self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitOr.html' title = 'core::ops::BitOr' > BitOr< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > > for & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2489' class = 'srclink' href = '../../src/ramp/int.rs.html#2908-2915' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-75' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitOr.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.bitor-8' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitOr.html#tymethod.bitor' class = 'fnname' > bitor< / a > (self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitXor.html' title = 'core::ops::BitXor' > BitXor< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2506' class = 'srclink' href = '../../src/ramp/int.rs.html#2935-2943' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-76' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitXor.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.bitxor-7' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitXor.html#tymethod.bitxor' class = 'fnname' > bitxor< / a > (self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitXor.html' title = 'core::ops::BitXor' > BitXor< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > > for & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2511' class = 'srclink' href = '../../src/ramp/int.rs.html#2945-2952' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-77' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitXor.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.bitxor-8' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitXor.html#tymethod.bitxor' class = 'fnname' > bitxor< / a > (self, other: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Add.html' title = 'core::ops::Add' > Add< / a > < < a class = 'type' href = '../../ramp/ll/limb/type.BaseInt.html' title = 'ramp::ll::limb::BaseInt' > BaseInt< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2528' class = 'srclink' href = '../../src/ramp/int.rs.html#2542-2552' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-78' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Add.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.add-9' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Add.html#tymethod.add' class = 'fnname' > add< / a > (self, other: < a class = 'type' href = '../../ramp/ll/limb/type.BaseInt.html' title = 'ramp::ll::limb::BaseInt' > BaseInt< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.AddAssign.html' title = 'core::ops::AddAssign' > AddAssign< / a > < < a class = 'type' href = '../../ramp/ll/limb/type.BaseInt.html' title = 'ramp::ll::limb::BaseInt' > BaseInt< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2533' class = 'srclink' href = '../../src/ramp/int.rs.html#2554-2561' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.add_assign-5' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.AddAssign.html#tymethod.add_assign' class = 'fnname' > add_assign< / a > (& mut self, other: < a class = 'type' href = '../../ramp/ll/limb/type.BaseInt.html' title = 'ramp::ll::limb::BaseInt' > BaseInt< / a > )< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html' title = 'core::ops::Sub' > Sub< / a > < < a class = 'type' href = '../../ramp/ll/limb/type.BaseInt.html' title = 'ramp::ll::limb::BaseInt' > BaseInt< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2537' class = 'srclink' href = '../../src/ramp/int.rs.html#2563-2573' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-79' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.sub-9' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html#tymethod.sub' class = 'fnname' > sub< / a > (self, other: < a class = 'type' href = '../../ramp/ll/limb/type.BaseInt.html' title = 'ramp::ll::limb::BaseInt' > BaseInt< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.SubAssign.html' title = 'core::ops::SubAssign' > SubAssign< / a > < < a class = 'type' href = '../../ramp/ll/limb/type.BaseInt.html' title = 'ramp::ll::limb::BaseInt' > BaseInt< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2542' class = 'srclink' href = '../../src/ramp/int.rs.html#2575-2582' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.sub_assign-5' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.SubAssign.html#tymethod.sub_assign' class = 'fnname' > sub_assign< / a > (& mut self, other: < a class = 'type' href = '../../ramp/ll/limb/type.BaseInt.html' title = 'ramp::ll::limb::BaseInt' > BaseInt< / a > )< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html' title = 'core::ops::Mul' > Mul< / a > < < a class = 'type' href = '../../ramp/ll/limb/type.BaseInt.html' title = 'ramp::ll::limb::BaseInt' > BaseInt< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2546' class = 'srclink' href = '../../src/ramp/int.rs.html#2584-2598' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-80' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.mul-9' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html#tymethod.mul' class = 'fnname' > mul< / a > (self, other: < a class = 'type' href = '../../ramp/ll/limb/type.BaseInt.html' title = 'ramp::ll::limb::BaseInt' > BaseInt< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.MulAssign.html' title = 'core::ops::MulAssign' > MulAssign< / a > < < a class = 'type' href = '../../ramp/ll/limb/type.BaseInt.html' title = 'ramp::ll::limb::BaseInt' > BaseInt< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2551' class = 'srclink' href = '../../src/ramp/int.rs.html#2600-2609' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.mul_assign-5' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.MulAssign.html#tymethod.mul_assign' class = 'fnname' > mul_assign< / a > (& mut self, other: < a class = 'type' href = '../../ramp/ll/limb/type.BaseInt.html' title = 'ramp::ll::limb::BaseInt' > BaseInt< / a > )< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Div.html' title = 'core::ops::Div' > Div< / a > < < a class = 'type' href = '../../ramp/ll/limb/type.BaseInt.html' title = 'ramp::ll::limb::BaseInt' > BaseInt< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2555' class = 'srclink' href = '../../src/ramp/int.rs.html#2611-2624' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-81' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Div.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.div-9' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Div.html#tymethod.div' class = 'fnname' > div< / a > (self, other: < a class = 'type' href = '../../ramp/ll/limb/type.BaseInt.html' title = 'ramp::ll::limb::BaseInt' > BaseInt< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.DivAssign.html' title = 'core::ops::DivAssign' > DivAssign< / a > < < a class = 'type' href = '../../ramp/ll/limb/type.BaseInt.html' title = 'ramp::ll::limb::BaseInt' > BaseInt< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2560' class = 'srclink' href = '../../src/ramp/int.rs.html#2626-2635' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.div_assign-5' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.DivAssign.html#tymethod.div_assign' class = 'fnname' > div_assign< / a > (& mut self, other: < a class = 'type' href = '../../ramp/ll/limb/type.BaseInt.html' title = 'ramp::ll::limb::BaseInt' > BaseInt< / a > )< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Rem.html' title = 'core::ops::Rem' > Rem< / a > < < a class = 'type' href = '../../ramp/ll/limb/type.BaseInt.html' title = 'ramp::ll::limb::BaseInt' > BaseInt< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2564' class = 'srclink' href = '../../src/ramp/int.rs.html#2637-2653' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-82' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Rem.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.rem-9' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Rem.html#tymethod.rem' class = 'fnname' > rem< / a > (self, other: < a class = 'type' href = '../../ramp/ll/limb/type.BaseInt.html' title = 'ramp::ll::limb::BaseInt' > BaseInt< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.RemAssign.html' title = 'core::ops::RemAssign' > RemAssign< / a > < < a class = 'type' href = '../../ramp/ll/limb/type.BaseInt.html' title = 'ramp::ll::limb::BaseInt' > BaseInt< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2569' class = 'srclink' href = '../../src/ramp/int.rs.html#2654-2659' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.rem_assign-5' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.RemAssign.html#tymethod.rem_assign' class = 'fnname' > rem_assign< / a > (& mut self, other: < a class = 'type' href = '../../ramp/ll/limb/type.BaseInt.html' title = 'ramp::ll::limb::BaseInt' > BaseInt< / a > )< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitAndAssign.html' title = 'core::ops::BitAndAssign' > BitAndAssign< / a > < < a class = 'type' href = '../../ramp/ll/limb/type.BaseInt.html' title = 'ramp::ll::limb::BaseInt' > BaseInt< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2573' class = 'srclink' href = '../../src/ramp/int.rs.html#2661-2666' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.bitand_assign-5' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitAndAssign.html#tymethod.bitand_assign' class = 'fnname' > bitand_assign< / a > (& mut self, other: < a class = 'type' href = '../../ramp/ll/limb/type.BaseInt.html' title = 'ramp::ll::limb::BaseInt' > BaseInt< / a > )< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitOrAssign.html' title = 'core::ops::BitOrAssign' > BitOrAssign< / a > < < a class = 'type' href = '../../ramp/ll/limb/type.BaseInt.html' title = 'ramp::ll::limb::BaseInt' > BaseInt< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2577' class = 'srclink' href = '../../src/ramp/int.rs.html#2668-2673' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.bitor_assign-5' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitOrAssign.html#tymethod.bitor_assign' class = 'fnname' > bitor_assign< / a > (& mut self, other: < a class = 'type' href = '../../ramp/ll/limb/type.BaseInt.html' title = 'ramp::ll::limb::BaseInt' > BaseInt< / a > )< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitXorAssign.html' title = 'core::ops::BitXorAssign' > BitXorAssign< / a > < < a class = 'type' href = '../../ramp/ll/limb/type.BaseInt.html' title = 'ramp::ll::limb::BaseInt' > BaseInt< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2581' class = 'srclink' href = '../../src/ramp/int.rs.html#2675-2680' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.bitxor_assign-5' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitXorAssign.html#tymethod.bitxor_assign' class = 'fnname' > bitxor_assign< / a > (& mut self, other: < a class = 'type' href = '../../ramp/ll/limb/type.BaseInt.html' title = 'ramp::ll::limb::BaseInt' > BaseInt< / a > )< / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Add.html' title = 'core::ops::Add' > Add< / a > < < a class = 'type' href = '../../ramp/ll/limb/type.BaseInt.html' title = 'ramp::ll::limb::BaseInt' > BaseInt< / a > > for & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2585' class = 'srclink' href = '../../src/ramp/int.rs.html#2687-2694' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-83' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Add.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.add-10' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Add.html#tymethod.add' class = 'fnname' > add< / a > (self, other: < a class = 'type' href = '../../ramp/ll/limb/type.BaseInt.html' title = 'ramp::ll::limb::BaseInt' > BaseInt< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html' title = 'core::ops::Sub' > Sub< / a > < < a class = 'type' href = '../../ramp/ll/limb/type.BaseInt.html' title = 'ramp::ll::limb::BaseInt' > BaseInt< / a > > for & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2602' class = 'srclink' href = '../../src/ramp/int.rs.html#2714-2721' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-84' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.sub-10' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html#tymethod.sub' class = 'fnname' > sub< / a > (self, other: < a class = 'type' href = '../../ramp/ll/limb/type.BaseInt.html' title = 'ramp::ll::limb::BaseInt' > BaseInt< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html' title = 'core::ops::Mul' > Mul< / a > < < a class = 'type' href = '../../ramp/ll/limb/type.BaseInt.html' title = 'ramp::ll::limb::BaseInt' > BaseInt< / a > > for & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2619' class = 'srclink' href = '../../src/ramp/int.rs.html#2741-2748' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-85' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.mul-10' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html#tymethod.mul' class = 'fnname' > mul< / a > (self, other: < a class = 'type' href = '../../ramp/ll/limb/type.BaseInt.html' title = 'ramp::ll::limb::BaseInt' > BaseInt< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Div.html' title = 'core::ops::Div' > Div< / a > < < a class = 'type' href = '../../ramp/ll/limb/type.BaseInt.html' title = 'ramp::ll::limb::BaseInt' > BaseInt< / a > > for & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2636' class = 'srclink' href = '../../src/ramp/int.rs.html#2770-2780' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-86' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Div.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.div-10' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Div.html#tymethod.div' class = 'fnname' > div< / a > (self, other: < a class = 'type' href = '../../ramp/ll/limb/type.BaseInt.html' title = 'ramp::ll::limb::BaseInt' > BaseInt< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Rem.html' title = 'core::ops::Rem' > Rem< / a > < < a class = 'type' href = '../../ramp/ll/limb/type.BaseInt.html' title = 'ramp::ll::limb::BaseInt' > BaseInt< / a > > for & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2653' class = 'srclink' href = '../../src/ramp/int.rs.html#2814-2827' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-87' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Rem.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.rem-10' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.Rem.html#tymethod.rem' class = 'fnname' > rem< / a > (self, other: < a class = 'type' href = '../../ramp/ll/limb/type.BaseInt.html' title = 'ramp::ll::limb::BaseInt' > BaseInt< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitAnd.html' title = 'core::ops::BitAnd' > BitAnd< / a > < < a class = 'type' href = '../../ramp/ll/limb/type.BaseInt.html' title = 'ramp::ll::limb::BaseInt' > BaseInt< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2670' class = 'srclink' href = '../../src/ramp/int.rs.html#2861-2869' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-88' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitAnd.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.bitand-9' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitAnd.html#tymethod.bitand' class = 'fnname' > bitand< / a > (self, other: < a class = 'type' href = '../../ramp/ll/limb/type.BaseInt.html' title = 'ramp::ll::limb::BaseInt' > BaseInt< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitAnd.html' title = 'core::ops::BitAnd' > BitAnd< / a > < < a class = 'type' href = '../../ramp/ll/limb/type.BaseInt.html' title = 'ramp::ll::limb::BaseInt' > BaseInt< / a > > for & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2675' class = 'srclink' href = '../../src/ramp/int.rs.html#2871-2878' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-89' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitAnd.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.bitand-10' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitAnd.html#tymethod.bitand' class = 'fnname' > bitand< / a > (self, other: < a class = 'type' href = '../../ramp/ll/limb/type.BaseInt.html' title = 'ramp::ll::limb::BaseInt' > BaseInt< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitOr.html' title = 'core::ops::BitOr' > BitOr< / a > < < a class = 'type' href = '../../ramp/ll/limb/type.BaseInt.html' title = 'ramp::ll::limb::BaseInt' > BaseInt< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2692' class = 'srclink' href = '../../src/ramp/int.rs.html#2898-2906' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-90' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitOr.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.bitor-9' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitOr.html#tymethod.bitor' class = 'fnname' > bitor< / a > (self, other: < a class = 'type' href = '../../ramp/ll/limb/type.BaseInt.html' title = 'ramp::ll::limb::BaseInt' > BaseInt< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitOr.html' title = 'core::ops::BitOr' > BitOr< / a > < < a class = 'type' href = '../../ramp/ll/limb/type.BaseInt.html' title = 'ramp::ll::limb::BaseInt' > BaseInt< / a > > for & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2697' class = 'srclink' href = '../../src/ramp/int.rs.html#2908-2915' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-91' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitOr.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.bitor-10' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitOr.html#tymethod.bitor' class = 'fnname' > bitor< / a > (self, other: < a class = 'type' href = '../../ramp/ll/limb/type.BaseInt.html' title = 'ramp::ll::limb::BaseInt' > BaseInt< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitXor.html' title = 'core::ops::BitXor' > BitXor< / a > < < a class = 'type' href = '../../ramp/ll/limb/type.BaseInt.html' title = 'ramp::ll::limb::BaseInt' > BaseInt< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2714' class = 'srclink' href = '../../src/ramp/int.rs.html#2935-2943' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-92' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitXor.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.bitxor-9' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitXor.html#tymethod.bitxor' class = 'fnname' > bitxor< / a > (self, other: < a class = 'type' href = '../../ramp/ll/limb/type.BaseInt.html' title = 'ramp::ll::limb::BaseInt' > BaseInt< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl< 'a> < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitXor.html' title = 'core::ops::BitXor' > BitXor< / a > < < a class = 'type' href = '../../ramp/ll/limb/type.BaseInt.html' title = 'ramp::ll::limb::BaseInt' > BaseInt< / a > > for & 'a < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2719' class = 'srclink' href = '../../src/ramp/int.rs.html#2945-2952' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Output-93' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitXor.html#associatedtype.Output' class = 'type' > Output< / a > = < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.bitxor-10' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/ops/trait.BitXor.html#tymethod.bitxor' class = 'fnname' > bitxor< / a > (self, other: < a class = 'type' href = '../../ramp/ll/limb/type.BaseInt.html' title = 'ramp::ll::limb::BaseInt' > BaseInt< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html' title = 'core::cmp::PartialEq' > PartialEq< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2736' class = 'srclink' href = '../../src/ramp/int.rs.html#2981-3003' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.eq-2' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html#tymethod.eq' class = 'fnname' > eq< / a > (& self, other: & < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > ) -> < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.bool.html' > bool< / a > < / code > < / h4 >
< h4 id = 'method.ne-2' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html#method.ne' class = 'fnname' > ne< / a > (& self, other: & Rhs) -> < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.bool.html' > bool< / a > < / code > < div class = "since" > 1.0.0< / div > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html' title = 'core::cmp::PartialOrd' > PartialOrd< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2745' class = 'srclink' href = '../../src/ramp/int.rs.html#3012-3048' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.partial_cmp-2' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html#tymethod.partial_cmp' class = 'fnname' > partial_cmp< / a > (& self, other: & < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > ) -> < a class = 'enum' href = 'https://doc.rust-lang.org/nightly/core/option/enum.Option.html' title = 'core::option::Option' > Option< / a > < < a class = 'enum' href = 'https://doc.rust-lang.org/nightly/core/cmp/enum.Ordering.html' title = 'core::cmp::Ordering' > Ordering< / a > > < / code > < / h4 >
< h4 id = 'method.lt-2' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html#method.lt' class = 'fnname' > lt< / a > (& self, other: & Rhs) -> < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.bool.html' > bool< / a > < / code > < div class = "since" > 1.0.0< / div > < / h4 >
< h4 id = 'method.le-2' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html#method.le' class = 'fnname' > le< / a > (& self, other: & Rhs) -> < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.bool.html' > bool< / a > < / code > < div class = "since" > 1.0.0< / div > < / h4 >
< h4 id = 'method.gt-2' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html#method.gt' class = 'fnname' > gt< / a > (& self, other: & Rhs) -> < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.bool.html' > bool< / a > < / code > < div class = "since" > 1.0.0< / div > < / h4 >
< h4 id = 'method.ge-2' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html#method.ge' class = 'fnname' > ge< / a > (& self, other: & Rhs) -> < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.bool.html' > bool< / a > < / code > < div class = "since" > 1.0.0< / div > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html' title = 'core::cmp::PartialEq' > PartialEq< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2758' class = 'srclink' href = '../../src/ramp/int.rs.html#3057-3062' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.eq-3' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html#tymethod.eq' class = 'fnname' > eq< / a > (& self, other: & < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > ) -> < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.bool.html' > bool< / a > < / code > < / h4 >
< h4 id = 'method.ne-3' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html#method.ne' class = 'fnname' > ne< / a > (& self, other: & Rhs) -> < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.bool.html' > bool< / a > < / code > < div class = "since" > 1.0.0< / div > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html' title = 'core::cmp::PartialOrd' > PartialOrd< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2766' class = 'srclink' href = '../../src/ramp/int.rs.html#3071-3076' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.partial_cmp-3' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html#tymethod.partial_cmp' class = 'fnname' > partial_cmp< / a > (& self, other: & < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > ) -> < a class = 'enum' href = 'https://doc.rust-lang.org/nightly/core/option/enum.Option.html' title = 'core::option::Option' > Option< / a > < < a class = 'enum' href = 'https://doc.rust-lang.org/nightly/core/cmp/enum.Ordering.html' title = 'core::cmp::Ordering' > Ordering< / a > > < / code > < / h4 >
< h4 id = 'method.lt-3' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html#method.lt' class = 'fnname' > lt< / a > (& self, other: & Rhs) -> < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.bool.html' > bool< / a > < / code > < div class = "since" > 1.0.0< / div > < / h4 >
< h4 id = 'method.le-3' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html#method.le' class = 'fnname' > le< / a > (& self, other: & Rhs) -> < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.bool.html' > bool< / a > < / code > < div class = "since" > 1.0.0< / div > < / h4 >
< h4 id = 'method.gt-3' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html#method.gt' class = 'fnname' > gt< / a > (& self, other: & Rhs) -> < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.bool.html' > bool< / a > < / code > < div class = "since" > 1.0.0< / div > < / h4 >
< h4 id = 'method.ge-3' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html#method.ge' class = 'fnname' > ge< / a > (& self, other: & Rhs) -> < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.bool.html' > bool< / a > < / code > < div class = "since" > 1.0.0< / div > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html' title = 'core::cmp::PartialEq' > PartialEq< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.u64.html' > u64< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2807' class = 'srclink' href = '../../src/ramp/int.rs.html#3157-3161' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.eq-4' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html#tymethod.eq' class = 'fnname' > eq< / a > (& self, other: & < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.u64.html' > u64< / a > ) -> < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.bool.html' > bool< / a > < / code > < / h4 >
< h4 id = 'method.ne-4' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html#method.ne' class = 'fnname' > ne< / a > (& self, other: & Rhs) -> < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.bool.html' > bool< / a > < / code > < div class = "since" > 1.0.0< / div > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html' title = 'core::cmp::PartialOrd' > PartialOrd< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.u64.html' > u64< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2815' class = 'srclink' href = '../../src/ramp/int.rs.html#3169-3173' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.partial_cmp-4' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html#tymethod.partial_cmp' class = 'fnname' > partial_cmp< / a > (& self, other: & < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.u64.html' > u64< / a > ) -> < a class = 'enum' href = 'https://doc.rust-lang.org/nightly/core/option/enum.Option.html' title = 'core::option::Option' > Option< / a > < < a class = 'enum' href = 'https://doc.rust-lang.org/nightly/core/cmp/enum.Ordering.html' title = 'core::cmp::Ordering' > Ordering< / a > > < / code > < / h4 >
< h4 id = 'method.lt-4' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html#method.lt' class = 'fnname' > lt< / a > (& self, other: & Rhs) -> < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.bool.html' > bool< / a > < / code > < div class = "since" > 1.0.0< / div > < / h4 >
< h4 id = 'method.le-4' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html#method.le' class = 'fnname' > le< / a > (& self, other: & Rhs) -> < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.bool.html' > bool< / a > < / code > < div class = "since" > 1.0.0< / div > < / h4 >
< h4 id = 'method.gt-4' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html#method.gt' class = 'fnname' > gt< / a > (& self, other: & Rhs) -> < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.bool.html' > bool< / a > < / code > < div class = "since" > 1.0.0< / div > < / h4 >
< h4 id = 'method.ge-4' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html#method.ge' class = 'fnname' > ge< / a > (& self, other: & Rhs) -> < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.bool.html' > bool< / a > < / code > < div class = "since" > 1.0.0< / div > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html' title = 'core::cmp::PartialEq' > PartialEq< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i64.html' > i64< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2823' class = 'srclink' href = '../../src/ramp/int.rs.html#3181-3185' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.eq-5' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html#tymethod.eq' class = 'fnname' > eq< / a > (& self, other: & < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i64.html' > i64< / a > ) -> < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.bool.html' > bool< / a > < / code > < / h4 >
< h4 id = 'method.ne-5' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html#method.ne' class = 'fnname' > ne< / a > (& self, other: & Rhs) -> < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.bool.html' > bool< / a > < / code > < div class = "since" > 1.0.0< / div > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html' title = 'core::cmp::PartialOrd' > PartialOrd< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i64.html' > i64< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2831' class = 'srclink' href = '../../src/ramp/int.rs.html#3193-3197' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.partial_cmp-5' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html#tymethod.partial_cmp' class = 'fnname' > partial_cmp< / a > (& self, other: & < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i64.html' > i64< / a > ) -> < a class = 'enum' href = 'https://doc.rust-lang.org/nightly/core/option/enum.Option.html' title = 'core::option::Option' > Option< / a > < < a class = 'enum' href = 'https://doc.rust-lang.org/nightly/core/cmp/enum.Ordering.html' title = 'core::cmp::Ordering' > Ordering< / a > > < / code > < / h4 >
< h4 id = 'method.lt-5' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html#method.lt' class = 'fnname' > lt< / a > (& self, other: & Rhs) -> < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.bool.html' > bool< / a > < / code > < div class = "since" > 1.0.0< / div > < / h4 >
< h4 id = 'method.le-5' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html#method.le' class = 'fnname' > le< / a > (& self, other: & Rhs) -> < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.bool.html' > bool< / a > < / code > < div class = "since" > 1.0.0< / div > < / h4 >
< h4 id = 'method.gt-5' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html#method.gt' class = 'fnname' > gt< / a > (& self, other: & Rhs) -> < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.bool.html' > bool< / a > < / code > < div class = "since" > 1.0.0< / div > < / h4 >
< h4 id = 'method.ge-5' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html#method.ge' class = 'fnname' > ge< / a > (& self, other: & Rhs) -> < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.bool.html' > bool< / a > < / code > < div class = "since" > 1.0.0< / div > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/convert/trait.From.html' title = 'core::convert::From' > From< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i8.html' > i8< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2839' class = 'srclink' href = '../../src/ramp/int.rs.html#3207-3247' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.from' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/convert/trait.From.html#tymethod.from' class = 'fnname' > from< / a > (val: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i8.html' > i8< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/convert/trait.From.html' title = 'core::convert::From' > From< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i16.html' > i16< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2853' class = 'srclink' href = '../../src/ramp/int.rs.html#3207-3247' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.from-1' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/convert/trait.From.html#tymethod.from' class = 'fnname' > from< / a > (val: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i16.html' > i16< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/convert/trait.From.html' title = 'core::convert::From' > From< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2867' class = 'srclink' href = '../../src/ramp/int.rs.html#3207-3247' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.from-2' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/convert/trait.From.html#tymethod.from' class = 'fnname' > from< / a > (val: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i32.html' > i32< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/convert/trait.From.html' title = 'core::convert::From' > From< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i64.html' > i64< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2881' class = 'srclink' href = '../../src/ramp/int.rs.html#3207-3247' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.from-3' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/convert/trait.From.html#tymethod.from' class = 'fnname' > from< / a > (val: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.i64.html' > i64< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/convert/trait.From.html' title = 'core::convert::From' > From< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.isize.html' > isize< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2895' class = 'srclink' href = '../../src/ramp/int.rs.html#3207-3247' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.from-4' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/convert/trait.From.html#tymethod.from' class = 'fnname' > from< / a > (val: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.isize.html' > isize< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/convert/trait.From.html' title = 'core::convert::From' > From< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.u8.html' > u8< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2909' class = 'srclink' href = '../../src/ramp/int.rs.html#3250-3275' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.from-5' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/convert/trait.From.html#tymethod.from' class = 'fnname' > from< / a > (val: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.u8.html' > u8< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/convert/trait.From.html' title = 'core::convert::From' > From< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.u16.html' > u16< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2919' class = 'srclink' href = '../../src/ramp/int.rs.html#3250-3275' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.from-6' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/convert/trait.From.html#tymethod.from' class = 'fnname' > from< / a > (val: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.u16.html' > u16< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/convert/trait.From.html' title = 'core::convert::From' > From< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.u32.html' > u32< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2929' class = 'srclink' href = '../../src/ramp/int.rs.html#3250-3275' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.from-7' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/convert/trait.From.html#tymethod.from' class = 'fnname' > from< / a > (val: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.u32.html' > u32< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/convert/trait.From.html' title = 'core::convert::From' > From< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.u64.html' > u64< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2939' class = 'srclink' href = '../../src/ramp/int.rs.html#3250-3275' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.from-8' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/convert/trait.From.html#tymethod.from' class = 'fnname' > from< / a > (val: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.u64.html' > u64< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/convert/trait.From.html' title = 'core::convert::From' > From< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2949' class = 'srclink' href = '../../src/ramp/int.rs.html#3250-3275' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.from-9' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/convert/trait.From.html#tymethod.from' class = 'fnname' > from< / a > (val: < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > ) -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/fmt/trait.Binary.html' title = 'core::fmt::Binary' > Binary< / a > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2959' class = 'srclink' href = '../../src/ramp/int.rs.html#3287-3299' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.fmt' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/fmt/trait.Binary.html#tymethod.fmt' class = 'fnname' > fmt< / a > (& self, f: & mut < a class = 'struct' href = 'https://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html' title = 'core::fmt::Formatter' > Formatter< / a > ) -> < a class = 'type' href = 'https://doc.rust-lang.org/nightly/core/fmt/type.Result.html' title = 'core::fmt::Result' > Result< / a > < / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/fmt/trait.Octal.html' title = 'core::fmt::Octal' > Octal< / a > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2965' class = 'srclink' href = '../../src/ramp/int.rs.html#3287-3299' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.fmt-1' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/fmt/trait.Octal.html#tymethod.fmt' class = 'fnname' > fmt< / a > (& self, f: & mut < a class = 'struct' href = 'https://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html' title = 'core::fmt::Formatter' > Formatter< / a > ) -> < a class = 'type' href = 'https://doc.rust-lang.org/nightly/core/fmt/type.Result.html' title = 'core::fmt::Result' > Result< / a > < / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/fmt/trait.Display.html' title = 'core::fmt::Display' > Display< / a > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2971' class = 'srclink' href = '../../src/ramp/int.rs.html#3287-3299' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.fmt-2' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/fmt/trait.Display.html#tymethod.fmt' class = 'fnname' > fmt< / a > (& self, f: & mut < a class = 'struct' href = 'https://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html' title = 'core::fmt::Formatter' > Formatter< / a > ) -> < a class = 'type' href = 'https://doc.rust-lang.org/nightly/core/fmt/type.Result.html' title = 'core::fmt::Result' > Result< / a > < / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/fmt/trait.Debug.html' title = 'core::fmt::Debug' > Debug< / a > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2977' class = 'srclink' href = '../../src/ramp/int.rs.html#3287-3299' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.fmt-3' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/fmt/trait.Debug.html#tymethod.fmt' class = 'fnname' > fmt< / a > (& self, f: & mut < a class = 'struct' href = 'https://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html' title = 'core::fmt::Formatter' > Formatter< / a > ) -> < a class = 'type' href = 'https://doc.rust-lang.org/nightly/core/fmt/type.Result.html' title = 'core::fmt::Result' > Result< / a > < / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/fmt/trait.LowerHex.html' title = 'core::fmt::LowerHex' > LowerHex< / a > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2983' class = 'srclink' href = '../../src/ramp/int.rs.html#3287-3299' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.fmt-4' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/fmt/trait.LowerHex.html#tymethod.fmt' class = 'fnname' > fmt< / a > (& self, f: & mut < a class = 'struct' href = 'https://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html' title = 'core::fmt::Formatter' > Formatter< / a > ) -> < a class = 'type' href = 'https://doc.rust-lang.org/nightly/core/fmt/type.Result.html' title = 'core::fmt::Result' > Result< / a > < / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/fmt/trait.UpperHex.html' title = 'core::fmt::UpperHex' > UpperHex< / a > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-2989' class = 'srclink' href = '../../src/ramp/int.rs.html#3287-3299' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.fmt-5' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/fmt/trait.UpperHex.html#tymethod.fmt' class = 'fnname' > fmt< / a > (& self, f: & mut < a class = 'struct' href = 'https://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html' title = 'core::fmt::Formatter' > Formatter< / a > ) -> < a class = 'type' href = 'https://doc.rust-lang.org/nightly/core/fmt/type.Result.html' title = 'core::fmt::Result' > Result< / a > < / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/str/trait.FromStr.html' title = 'core::str::FromStr' > FromStr< / a > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-3044' class = 'srclink' href = '../../src/ramp/int.rs.html#3340-3346' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'associatedtype.Err' class = 'type' > < code > type < a href = 'https://doc.rust-lang.org/nightly/core/str/trait.FromStr.html#associatedtype.Err' class = 'type' > Err< / a > = < a class = 'struct' href = '../../ramp/int/struct.ParseIntError.html' title = 'ramp::int::ParseIntError' > ParseIntError< / a > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.from_str' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/str/trait.FromStr.html#tymethod.from_str' class = 'fnname' > from_str< / a > (src: & < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.str.html' > str< / a > ) -> < a class = 'enum' href = 'https://doc.rust-lang.org/nightly/core/result/enum.Result.html' title = 'core::result::Result' > Result< / a > < < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > , < a class = 'struct' href = '../../ramp/int/struct.ParseIntError.html' title = 'ramp::int::ParseIntError' > ParseIntError< / a > > < / code > < / h4 >
2016-05-10 23:34:09 -04:00
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/num/trait.Zero.html' title = 'core::num::Zero' > Zero< / a > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-3133' class = 'srclink' href = '../../src/ramp/int.rs.html#3410-3418' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.zero-1' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/num/trait.Zero.html#tymethod.zero' class = 'fnname' > zero< / a > () -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/num/trait.One.html' title = 'core::num::One' > One< / a > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-3135' class = 'srclink' href = '../../src/ramp/int.rs.html#3420-3424' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.one-1' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/num/trait.One.html#tymethod.one' class = 'fnname' > one< / a > () -> < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / h4 >
< / div > < h3 class = 'impl' > < span class = 'in-band' > < code > impl < a class = 'trait' href = 'https://doc.rust-lang.org/nightly/core/iter/range/trait.Step.html' title = 'core::iter::range::Step' > Step< / a > for < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > < / code > < / span > < span class = 'out-of-band' > < div class = 'ghost' > < / div > < a id = 'src-3137' class = 'srclink' href = '../../src/ramp/int.rs.html#3426-3445' title = 'goto source code' > [src]< / a > < / span > < / h3 >
< div class = 'impl-items' > < h4 id = 'method.step' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/iter/range/trait.Step.html#tymethod.step' class = 'fnname' > step< / a > (& self, by: & < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > ) -> < a class = 'enum' href = 'https://doc.rust-lang.org/nightly/core/option/enum.Option.html' title = 'core::option::Option' > Option< / a > < < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > > < / code > < / h4 >
2016-05-10 15:03:32 -04:00
< h4 id = 'method.steps_between' class = 'method' > < code > fn < a href = 'https://doc.rust-lang.org/nightly/core/iter/range/trait.Step.html#tymethod.steps_between' class = 'fnname' > steps_between< / a > (start: & < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > , end: & < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > , by: & < a class = 'struct' href = '../../ramp/int/struct.Int.html' title = 'ramp::int::Int' > Int< / a > ) -> < a class = 'enum' href = 'https://doc.rust-lang.org/nightly/core/option/enum.Option.html' title = 'core::option::Option' > Option< / a > < < a class = 'primitive' href = 'https://doc.rust-lang.org/nightly/std/primitive.usize.html' > usize< / a > > < / code > < / h4 >
< / div > < / section >
< section id = 'search' class = "content hidden" > < / section >
< section class = "footer" > < / section >
< aside id = "help" class = "hidden" >
< div >
< h1 class = "hidden" > Help< / h1 >
< div class = "shortcuts" >
< h2 > Keyboard Shortcuts< / h2 >
< dl >
< dt > ?< / dt >
< dd > Show this help dialog< / dd >
< dt > S< / dt >
< dd > Focus the search field< / dd >
< dt > ⇤ < / dt >
< dd > Move up in search results< / dd >
< dt > ⇥ < / dt >
< dd > Move down in search results< / dd >
< dt > ⏎ < / dt >
< dd > Go to active search result< / dd >
< / dl >
< / div >
< div class = "infos" >
< h2 > Search Tricks< / h2 >
< p >
Prefix searches with a type followed by a colon (e.g.
< code > fn:< / code > ) to restrict the search to a given type.
< / p >
< p >
Accepted types are: < code > fn< / code > , < code > mod< / code > ,
< code > struct< / code > , < code > enum< / code > ,
< code > trait< / code > , < code > type< / code > , < code > macro< / code > ,
and < code > const< / code > .
< / p >
< p >
Search functions by type signature (e.g.
< code > vec -> usize< / code > or < code > * -> vec< / code > )
< / p >
< / div >
< / div >
< / aside >
< script >
window.rootPath = "../../";
window.currentCrate = "ramp";
window.playgroundUrl = "";
< / script >
< script src = "../../jquery.js" > < / script >
< script src = "../../main.js" > < / script >
< script defer src = "../../search-index.js" > < / script >
< / body >
< / html >