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 `Limb` struct in crate `ramp`.">
|
|
|
|
|
<meta name="keywords" content="rust, rustlang, rust-lang, Limb">
|
|
|
|
|
|
|
|
|
|
<title>ramp::ll::limb::Limb - 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'>ll</a>::<wbr><a href='index.html'>limb</a></p><script>window.sidebarCurrent = {name: 'Limb', 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'>ll</a>::<wbr><a href='index.html'>limb</a>::<wbr><a class='struct' href=''>Limb</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-747' class='srclink' href='../../../src/ramp/ll/limb.rs.html#43' title='goto source code'>[src]</a></span></h1>
|
2016-05-10 15:03:32 -04:00
|
|
|
|
<pre class='rust struct'>pub struct Limb(pub <a class='type' href='../../../ramp/ll/limb/type.BaseInt.html' title='ramp::ll::limb::BaseInt'>BaseInt</a>);</pre><div class='docblock'><p>Helper newtype for operations.</p>
|
|
|
|
|
|
|
|
|
|
<p>A "Limb" is a single digit in base 2<sup>word</sup> size.</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/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></span><span class='out-of-band'><div class='ghost'></div><a id='src-771' class='srclink' href='../../../src/ramp/ll/limb.rs.html#50-148' title='goto source code'>[src]</a></span></h3>
|
|
|
|
|
<div class='impl-items'><h4 id='associatedconstant.BITS' class='associatedconstant'><code>const <a href='#associatedconstant.BITS' class='constant'>BITS</a>: <a class='primitive' href='https://doc.rust-lang.org/nightly/std/primitive.usize.html'>usize</a> = 64</code></h4>
|
|
|
|
|
<h4 id='associatedconstant.B' class='associatedconstant'><code>const <a href='#associatedconstant.B' class='constant'>B</a>: <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a> = Limb(1 << Limb::BITS / 2)</code></h4>
|
2016-05-10 15:03:32 -04:00
|
|
|
|
<h4 id='method.high_part' class='method'><code>fn <a href='#method.high_part' class='fnname'>high_part</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 high half of the limb</p>
|
|
|
|
|
</div><h4 id='method.low_part' class='method'><code>fn <a href='#method.low_part' class='fnname'>low_part</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 low half of the limb</p>
|
|
|
|
|
</div><h4 id='method.add_overflow' class='method'><code>fn <a href='#method.add_overflow' class='fnname'>add_overflow</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.tuple.html'>(</a><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><a class='primitive' href='https://doc.rust-lang.org/nightly/std/primitive.tuple.html'>)</a></code></h4>
|
|
|
|
|
<div class='docblock'><p>Performs <code>self + other</code>, returning the result and whether or not the addition overflowed</p>
|
|
|
|
|
</div><h4 id='method.sub_overflow' class='method'><code>fn <a href='#method.sub_overflow' class='fnname'>sub_overflow</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.tuple.html'>(</a><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><a class='primitive' href='https://doc.rust-lang.org/nightly/std/primitive.tuple.html'>)</a></code></h4>
|
|
|
|
|
<div class='docblock'><p>Performs <code>self - other</code>, returning the result and whether or not the subtraction overflowed</p>
|
|
|
|
|
</div><h4 id='method.mul_lo' class='method'><code>fn <a href='#method.mul_lo' class='fnname'>mul_lo</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/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></h4>
|
|
|
|
|
<div class='docblock'><p>Performs <code>self * other</code> returning the lower half of the product</p>
|
|
|
|
|
</div><h4 id='method.mul_hi' class='method'><code>fn <a href='#method.mul_hi' class='fnname'>mul_hi</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/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></h4>
|
|
|
|
|
<div class='docblock'><p>Performs <code>self * other</code> returning the higher half of the product</p>
|
|
|
|
|
</div><h4 id='method.mul_hilo' class='method'><code>fn <a href='#method.mul_hilo' class='fnname'>mul_hilo</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.tuple.html'>(</a><a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a>, <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.tuple.html'>)</a></code></h4>
|
|
|
|
|
<div class='docblock'><p>Performs <code>self * other</code> returning the two-limb result as (high, low).</p>
|
|
|
|
|
</div><h4 id='method.invert' class='method'><code>fn <a href='#method.invert' class='fnname'>invert</a>(self) -> <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></h4>
|
|
|
|
|
<h4 id='method.high_bit_set' class='method'><code>fn <a href='#method.high_bit_set' class='fnname'>high_bit_set</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 the highest bit in the limb is set.</p>
|
|
|
|
|
|
|
|
|
|
<p>Division algorithms often require the highest limb of the divisor
|
|
|
|
|
to be <code>d >= BASE/2</code>.</p>
|
|
|
|
|
</div><h4 id='method.leading_zeros' class='method'><code>fn <a href='#method.leading_zeros' class='fnname'>leading_zeros</a>(self) -> <a class='type' href='../../../ramp/ll/limb/type.BaseInt.html' title='ramp::ll::limb::BaseInt'>BaseInt</a></code></h4>
|
|
|
|
|
<div class='docblock'><p>Returns the number of leading zeros in the limb</p>
|
|
|
|
|
</div><h4 id='method.trailing_zeros' class='method'><code>fn <a href='#method.trailing_zeros' class='fnname'>trailing_zeros</a>(self) -> <a class='type' href='../../../ramp/ll/limb/type.BaseInt.html' title='ramp::ll::limb::BaseInt'>BaseInt</a></code></h4>
|
|
|
|
|
<div class='docblock'><p>Returns the number of trailing zeros in the limb</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/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></span><span class='out-of-band'><div class='ghost'></div><a id='src-768' class='srclink' href='../../../src/ramp/ll/limb.rs.html#45-48' 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/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></h4>
|
|
|
|
|
<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, source: &Self)</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/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/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></span><span class='out-of-band'><div class='ghost'></div><a id='src-808' class='srclink' href='../../../src/ramp/ll/limb.rs.html#150-157' 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/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</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/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</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/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></span><span class='out-of-band'><div class='ghost'></div><a id='src-813' class='srclink' href='../../../src/ramp/ll/limb.rs.html#159-166' 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/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</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 class='type' href='../../../ramp/ll/limb/type.BaseInt.html' title='ramp::ll::limb::BaseInt'>BaseInt</a>) -> <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</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.bool.html'>bool</a>> for <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></span><span class='out-of-band'><div class='ghost'></div><a id='src-818' class='srclink' href='../../../src/ramp/ll/limb.rs.html#168-175' 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/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</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='primitive' href='https://doc.rust-lang.org/nightly/std/primitive.bool.html'>bool</a>) -> <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</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/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a>> for <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></span><span class='out-of-band'><div class='ghost'></div><a id='src-828' class='srclink' href='../../../src/ramp/ll/limb.rs.html#186-193' 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.Sub.html#associatedtype.Output' class='type'>Output</a> = <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</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/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</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='type' href='../../../ramp/ll/limb/type.BaseInt.html' title='ramp::ll::limb::BaseInt'>BaseInt</a>> for <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></span><span class='out-of-band'><div class='ghost'></div><a id='src-833' class='srclink' href='../../../src/ramp/ll/limb.rs.html#195-202' 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.Sub.html#associatedtype.Output' class='type'>Output</a> = <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</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 class='type' href='../../../ramp/ll/limb/type.BaseInt.html' title='ramp::ll::limb::BaseInt'>BaseInt</a>) -> <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</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='primitive' href='https://doc.rust-lang.org/nightly/std/primitive.bool.html'>bool</a>> for <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></span><span class='out-of-band'><div class='ghost'></div><a id='src-838' class='srclink' href='../../../src/ramp/ll/limb.rs.html#204-211' 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/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</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='primitive' href='https://doc.rust-lang.org/nightly/std/primitive.bool.html'>bool</a>) -> <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</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/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a>> for <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></span><span class='out-of-band'><div class='ghost'></div><a id='src-848' class='srclink' href='../../../src/ramp/ll/limb.rs.html#222-229' 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.Mul.html#associatedtype.Output' class='type'>Output</a> = <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</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/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</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='type' href='../../../ramp/ll/limb/type.BaseInt.html' title='ramp::ll::limb::BaseInt'>BaseInt</a>> for <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></span><span class='out-of-band'><div class='ghost'></div><a id='src-853' class='srclink' href='../../../src/ramp/ll/limb.rs.html#231-238' 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.Mul.html#associatedtype.Output' class='type'>Output</a> = <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</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 class='type' href='../../../ramp/ll/limb/type.BaseInt.html' title='ramp::ll::limb::BaseInt'>BaseInt</a>) -> <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</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/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a>> for <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></span><span class='out-of-band'><div class='ghost'></div><a id='src-863' class='srclink' href='../../../src/ramp/ll/limb.rs.html#249-258' 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.Div.html#associatedtype.Output' class='type'>Output</a> = <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</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/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</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='type' href='../../../ramp/ll/limb/type.BaseInt.html' title='ramp::ll::limb::BaseInt'>BaseInt</a>> for <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></span><span class='out-of-band'><div class='ghost'></div><a id='src-869' class='srclink' href='../../../src/ramp/ll/limb.rs.html#260-269' 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.Div.html#associatedtype.Output' class='type'>Output</a> = <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</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 class='type' href='../../../ramp/ll/limb/type.BaseInt.html' title='ramp::ll::limb::BaseInt'>BaseInt</a>) -> <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</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/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a>> for <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></span><span class='out-of-band'><div class='ghost'></div><a id='src-875' class='srclink' href='../../../src/ramp/ll/limb.rs.html#271-280' 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.Rem.html#associatedtype.Output' class='type'>Output</a> = <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</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/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</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='type' href='../../../ramp/ll/limb/type.BaseInt.html' title='ramp::ll::limb::BaseInt'>BaseInt</a>> for <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></span><span class='out-of-band'><div class='ghost'></div><a id='src-881' class='srclink' href='../../../src/ramp/ll/limb.rs.html#282-291' 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.Rem.html#associatedtype.Output' class='type'>Output</a> = <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</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 class='type' href='../../../ramp/ll/limb/type.BaseInt.html' title='ramp::ll::limb::BaseInt'>BaseInt</a>) -> <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</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.Neg.html' title='core::ops::Neg'>Neg</a> for <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></span><span class='out-of-band'><div class='ghost'></div><a id='src-887' class='srclink' href='../../../src/ramp/ll/limb.rs.html#293-300' 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.Neg.html#associatedtype.Output' class='type'>Output</a> = <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</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/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></h4>
|
2016-05-10 23:34:09 -04:00
|
|
|
|
</div><h3 class='impl'><span class='in-band'><code>impl<I> <a class='trait' href='https://doc.rust-lang.org/nightly/core/ops/trait.Shl.html' title='core::ops::Shl'>Shl</a><I> for <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a> <span class='where'>where <a class='type' href='../../../ramp/ll/limb/type.BaseInt.html' title='ramp::ll::limb::BaseInt'>BaseInt</a>: <a class='trait' href='https://doc.rust-lang.org/nightly/core/ops/trait.Shl.html' title='core::ops::Shl'>Shl</a><I, Output=<a class='type' href='../../../ramp/ll/limb/type.BaseInt.html' title='ramp::ll::limb::BaseInt'>BaseInt</a>></span></code></span><span class='out-of-band'><div class='ghost'></div><a id='src-891' class='srclink' href='../../../src/ramp/ll/limb.rs.html#302-309' 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.Shl.html#associatedtype.Output' class='type'>Output</a> = <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</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, other: I) -> <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></h4>
|
2016-05-10 23:34:09 -04:00
|
|
|
|
</div><h3 class='impl'><span class='in-band'><code>impl<I> <a class='trait' href='https://doc.rust-lang.org/nightly/core/ops/trait.Shr.html' title='core::ops::Shr'>Shr</a><I> for <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a> <span class='where'>where <a class='type' href='../../../ramp/ll/limb/type.BaseInt.html' title='ramp::ll::limb::BaseInt'>BaseInt</a>: <a class='trait' href='https://doc.rust-lang.org/nightly/core/ops/trait.Shr.html' title='core::ops::Shr'>Shr</a><I, Output=<a class='type' href='../../../ramp/ll/limb/type.BaseInt.html' title='ramp::ll::limb::BaseInt'>BaseInt</a>></span></code></span><span class='out-of-band'><div class='ghost'></div><a id='src-897' class='srclink' href='../../../src/ramp/ll/limb.rs.html#311-318' 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.Shr.html#associatedtype.Output' class='type'>Output</a> = <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</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: I) -> <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</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.Not.html' title='core::ops::Not'>Not</a> for <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></span><span class='out-of-band'><div class='ghost'></div><a id='src-903' class='srclink' href='../../../src/ramp/ll/limb.rs.html#320-327' 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.Not.html#associatedtype.Output' class='type'>Output</a> = <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></h4>
|
2016-05-10 15:03:32 -04:00
|
|
|
|
<h4 id='method.not' class='method'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Not.html#tymethod.not' class='fnname'>not</a>(self) -> <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</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/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a>> for <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></span><span class='out-of-band'><div class='ghost'></div><a id='src-907' class='srclink' href='../../../src/ramp/ll/limb.rs.html#329-336' 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.BitAnd.html#associatedtype.Output' class='type'>Output</a> = <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</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/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</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/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a>> for <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></span><span class='out-of-band'><div class='ghost'></div><a id='src-912' class='srclink' href='../../../src/ramp/ll/limb.rs.html#338-345' 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.BitOr.html#associatedtype.Output' class='type'>Output</a> = <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</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/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</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/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a>> for <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></span><span class='out-of-band'><div class='ghost'></div><a id='src-917' class='srclink' href='../../../src/ramp/ll/limb.rs.html#347-354' 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.BitXor.html#associatedtype.Output' class='type'>Output</a> = <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</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/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</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='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a>> for <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></span><span class='out-of-band'><div class='ghost'></div><a id='src-922' class='srclink' href='../../../src/ramp/ll/limb.rs.html#356-366' 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/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>
|
2016-05-10 15:03:32 -04:00
|
|
|
|
<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: &<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>
|
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.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/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></span><span class='out-of-band'><div class='ghost'></div><a id='src-929' class='srclink' href='../../../src/ramp/ll/limb.rs.html#368-385' 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/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>
|
2016-05-10 15:03:32 -04:00
|
|
|
|
<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: &<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.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: &<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.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: &<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.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: &<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>
|
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='type' href='../../../ramp/ll/limb/type.BaseInt.html' title='ramp::ll::limb::BaseInt'>BaseInt</a>> for <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></span><span class='out-of-band'><div class='ghost'></div><a id='src-945' class='srclink' href='../../../src/ramp/ll/limb.rs.html#387-397' 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='type' href='../../../ramp/ll/limb/type.BaseInt.html' title='ramp::ll::limb::BaseInt'>BaseInt</a>) -> <a class='primitive' href='https://doc.rust-lang.org/nightly/std/primitive.bool.html'>bool</a></code></h4>
|
2016-05-10 15:03:32 -04:00
|
|
|
|
<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: &<a class='type' href='../../../ramp/ll/limb/type.BaseInt.html' title='ramp::ll::limb::BaseInt'>BaseInt</a>) -> <a class='primitive' href='https://doc.rust-lang.org/nightly/std/primitive.bool.html'>bool</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.PartialOrd.html' title='core::cmp::PartialOrd'>PartialOrd</a><<a class='type' href='../../../ramp/ll/limb/type.BaseInt.html' title='ramp::ll::limb::BaseInt'>BaseInt</a>> for <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></span><span class='out-of-band'><div class='ghost'></div><a id='src-952' class='srclink' href='../../../src/ramp/ll/limb.rs.html#399-416' 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='type' href='../../../ramp/ll/limb/type.BaseInt.html' title='ramp::ll::limb::BaseInt'>BaseInt</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>
|
2016-05-10 15:03:32 -04:00
|
|
|
|
<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: &<a class='type' href='../../../ramp/ll/limb/type.BaseInt.html' title='ramp::ll::limb::BaseInt'>BaseInt</a>) -> <a class='primitive' href='https://doc.rust-lang.org/nightly/std/primitive.bool.html'>bool</a></code></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: &<a class='type' href='../../../ramp/ll/limb/type.BaseInt.html' title='ramp::ll::limb::BaseInt'>BaseInt</a>) -> <a class='primitive' href='https://doc.rust-lang.org/nightly/std/primitive.bool.html'>bool</a></code></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: &<a class='type' href='../../../ramp/ll/limb/type.BaseInt.html' title='ramp::ll::limb::BaseInt'>BaseInt</a>) -> <a class='primitive' href='https://doc.rust-lang.org/nightly/std/primitive.bool.html'>bool</a></code></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: &<a class='type' href='../../../ramp/ll/limb/type.BaseInt.html' title='ramp::ll::limb::BaseInt'>BaseInt</a>) -> <a class='primitive' href='https://doc.rust-lang.org/nightly/std/primitive.bool.html'>bool</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/fmt/trait.Debug.html' title='core::fmt::Debug'>Debug</a> for <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></span><span class='out-of-band'><div class='ghost'></div><a id='src-968' class='srclink' href='../../../src/ramp/ll/limb.rs.html#418-422' 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.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.Display.html' title='core::fmt::Display'>Display</a> for <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></span><span class='out-of-band'><div class='ghost'></div><a id='src-972' class='srclink' href='../../../src/ramp/ll/limb.rs.html#424-428' 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.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/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/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></span><span class='out-of-band'><div class='ghost'></div><a id='src-1533' class='srclink' href='../../../src/ramp/int.rs.html#907-912' 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='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-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='struct' href='../../../ramp/int/struct.Int.html' title='ramp::int::Int'>Int</a>> for <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></span><span class='out-of-band'><div class='ghost'></div><a id='src-1550' class='srclink' href='../../../src/ramp/int.rs.html#964-969' 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='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-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 id='derived_implementations'>Derived Implementations </h3><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/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></span><span class='out-of-band'><div class='ghost'></div><a id='src-750' class='srclink' href='../../../src/ramp/ll/limb.rs.html#42' 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: <a class='trait' href='https://doc.rust-lang.org/nightly/core/hash/trait.Hasher.html' title='core::hash::Hasher'>Hasher</a>>(&self, __arg_0: &mut __H)</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/cmp/trait.Ord.html' title='core::cmp::Ord'>Ord</a> for <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></span><span class='out-of-band'><div class='ghost'></div><a id='src-756' class='srclink' href='../../../src/ramp/ll/limb.rs.html#42' 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, __arg_0: &<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/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.Eq.html' title='core::cmp::Eq'>Eq</a> for <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></span><span class='out-of-band'><div class='ghost'></div><a id='src-763' class='srclink' href='../../../src/ramp/ll/limb.rs.html#42' 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/marker/trait.Copy.html' title='core::marker::Copy'>Copy</a> for <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></span><span class='out-of-band'><div class='ghost'></div><a id='src-767' class='srclink' href='../../../src/ramp/ll/limb.rs.html#42' title='goto source code'>[src]</a></span></h3>
|
|
|
|
|
<div class='impl-items'></div></section>
|
2016-05-10 15:03:32 -04:00
|
|
|
|
<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>
|