pumpkin/ramp/ll/limb/struct.Limb.html
2016-05-10 15:03:32 -04:00

207 lines
No EOL
45 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!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'>&#x2212;</span>]
</a>
</span><a id='src-746' class='srclink' href='../../../src/ramp/ll/limb.rs.html#43' title='goto source code'>[src]</a></span></h1>
<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 &quot;Limb&quot; is a single digit in base 2<sup>word</sup> size.</p>
</div><h2 id='methods'>Methods</h2><h3 class='impl'><code>impl <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></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>
<h4 id='method.high_part' class='method'><code>fn <a href='#method.high_part' class='fnname'>high_part</a>(self) -&gt; <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) -&gt; <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>) -&gt; <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>) -&gt; <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>) -&gt; <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>) -&gt; <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>) -&gt; <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) -&gt; <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) -&gt; <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 &gt;= 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) -&gt; <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) -&gt; <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>
</div></div><h2 id='implementations'>Trait Implementations</h2><h3 class='impl'><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></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>(&amp;self) -&gt; <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>(&amp;mut self, source: &amp;Self)</code><span class="since">1.0.0</span></h4>
</div><h3 class='impl'><code>impl <a class='trait' href='https://doc.rust-lang.org/nightly/core/ops/trait.Add.html' title='core::ops::Add'>Add</a>&lt;<a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a>&gt; for <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></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>
<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>) -&gt; <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></h4>
</div><h3 class='impl'><code>impl <a class='trait' href='https://doc.rust-lang.org/nightly/core/ops/trait.Add.html' title='core::ops::Add'>Add</a>&lt;<a class='type' href='../../../ramp/ll/limb/type.BaseInt.html' title='ramp::ll::limb::BaseInt'>BaseInt</a>&gt; for <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></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>
<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>) -&gt; <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></h4>
</div><h3 class='impl'><code>impl <a class='trait' href='https://doc.rust-lang.org/nightly/core/ops/trait.Add.html' title='core::ops::Add'>Add</a>&lt;<a class='primitive' href='https://doc.rust-lang.org/nightly/std/primitive.bool.html'>bool</a>&gt; for <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></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>
<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>) -&gt; <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></h4>
</div><h3 class='impl'><code>impl <a class='trait' href='https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html' title='core::ops::Sub'>Sub</a>&lt;<a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a>&gt; for <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></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>
<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>) -&gt; <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></h4>
</div><h3 class='impl'><code>impl <a class='trait' href='https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html' title='core::ops::Sub'>Sub</a>&lt;<a class='type' href='../../../ramp/ll/limb/type.BaseInt.html' title='ramp::ll::limb::BaseInt'>BaseInt</a>&gt; for <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></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>
<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>) -&gt; <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></h4>
</div><h3 class='impl'><code>impl <a class='trait' href='https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html' title='core::ops::Sub'>Sub</a>&lt;<a class='primitive' href='https://doc.rust-lang.org/nightly/std/primitive.bool.html'>bool</a>&gt; for <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></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>
<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>) -&gt; <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></h4>
</div><h3 class='impl'><code>impl <a class='trait' href='https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html' title='core::ops::Mul'>Mul</a>&lt;<a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a>&gt; for <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></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>
<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>) -&gt; <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></h4>
</div><h3 class='impl'><code>impl <a class='trait' href='https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html' title='core::ops::Mul'>Mul</a>&lt;<a class='type' href='../../../ramp/ll/limb/type.BaseInt.html' title='ramp::ll::limb::BaseInt'>BaseInt</a>&gt; for <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></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>
<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>) -&gt; <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></h4>
</div><h3 class='impl'><code>impl <a class='trait' href='https://doc.rust-lang.org/nightly/core/ops/trait.Div.html' title='core::ops::Div'>Div</a>&lt;<a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a>&gt; for <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></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>
<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>) -&gt; <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></h4>
</div><h3 class='impl'><code>impl <a class='trait' href='https://doc.rust-lang.org/nightly/core/ops/trait.Div.html' title='core::ops::Div'>Div</a>&lt;<a class='type' href='../../../ramp/ll/limb/type.BaseInt.html' title='ramp::ll::limb::BaseInt'>BaseInt</a>&gt; for <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></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>
<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>) -&gt; <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></h4>
</div><h3 class='impl'><code>impl <a class='trait' href='https://doc.rust-lang.org/nightly/core/ops/trait.Rem.html' title='core::ops::Rem'>Rem</a>&lt;<a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a>&gt; for <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></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>
<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>) -&gt; <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></h4>
</div><h3 class='impl'><code>impl <a class='trait' href='https://doc.rust-lang.org/nightly/core/ops/trait.Rem.html' title='core::ops::Rem'>Rem</a>&lt;<a class='type' href='../../../ramp/ll/limb/type.BaseInt.html' title='ramp::ll::limb::BaseInt'>BaseInt</a>&gt; for <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></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>
<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>) -&gt; <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></h4>
</div><h3 class='impl'><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></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>
<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) -&gt; <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></h4>
</div><h3 class='impl'><code>impl&lt;I&gt; <a class='trait' href='https://doc.rust-lang.org/nightly/core/ops/trait.Shl.html' title='core::ops::Shl'>Shl</a>&lt;I&gt; 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>&lt;I, Output=<a class='type' href='../../../ramp/ll/limb/type.BaseInt.html' title='ramp::ll::limb::BaseInt'>BaseInt</a>&gt;</span></code></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>
<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) -&gt; <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></h4>
</div><h3 class='impl'><code>impl&lt;I&gt; <a class='trait' href='https://doc.rust-lang.org/nightly/core/ops/trait.Shr.html' title='core::ops::Shr'>Shr</a>&lt;I&gt; 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>&lt;I, Output=<a class='type' href='../../../ramp/ll/limb/type.BaseInt.html' title='ramp::ll::limb::BaseInt'>BaseInt</a>&gt;</span></code></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>
<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) -&gt; <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></h4>
</div><h3 class='impl'><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></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>
<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) -&gt; <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></h4>
</div><h3 class='impl'><code>impl <a class='trait' href='https://doc.rust-lang.org/nightly/core/ops/trait.BitAnd.html' title='core::ops::BitAnd'>BitAnd</a>&lt;<a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a>&gt; for <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></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>
<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>) -&gt; <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></h4>
</div><h3 class='impl'><code>impl <a class='trait' href='https://doc.rust-lang.org/nightly/core/ops/trait.BitOr.html' title='core::ops::BitOr'>BitOr</a>&lt;<a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a>&gt; for <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></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>
<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>) -&gt; <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></h4>
</div><h3 class='impl'><code>impl <a class='trait' href='https://doc.rust-lang.org/nightly/core/ops/trait.BitXor.html' title='core::ops::BitXor'>BitXor</a>&lt;<a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a>&gt; for <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></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>
<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>) -&gt; <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></h4>
</div><h3 class='impl'><code>impl <a class='trait' href='https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html' title='core::cmp::PartialEq'>PartialEq</a>&lt;<a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a>&gt; for <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></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>(&amp;self, other: &amp;<a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a>) -&gt; <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>(&amp;self, other: &amp;<a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a>) -&gt; <a class='primitive' href='https://doc.rust-lang.org/nightly/std/primitive.bool.html'>bool</a></code></h4>
</div><h3 class='impl'><code>impl <a class='trait' href='https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html' title='core::cmp::PartialOrd'>PartialOrd</a>&lt;<a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a>&gt; for <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></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>(&amp;self, other: &amp;<a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a>) -&gt; <a class='enum' href='https://doc.rust-lang.org/nightly/core/option/enum.Option.html' title='core::option::Option'>Option</a>&lt;<a class='enum' href='https://doc.rust-lang.org/nightly/core/cmp/enum.Ordering.html' title='core::cmp::Ordering'>Ordering</a>&gt;</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>(&amp;self, other: &amp;<a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a>) -&gt; <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>(&amp;self, other: &amp;<a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a>) -&gt; <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>(&amp;self, other: &amp;<a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a>) -&gt; <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>(&amp;self, other: &amp;<a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a>) -&gt; <a class='primitive' href='https://doc.rust-lang.org/nightly/std/primitive.bool.html'>bool</a></code></h4>
</div><h3 class='impl'><code>impl <a class='trait' href='https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html' title='core::cmp::PartialEq'>PartialEq</a>&lt;<a class='type' href='../../../ramp/ll/limb/type.BaseInt.html' title='ramp::ll::limb::BaseInt'>BaseInt</a>&gt; for <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></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>(&amp;self, other: &amp;<a class='type' href='../../../ramp/ll/limb/type.BaseInt.html' title='ramp::ll::limb::BaseInt'>BaseInt</a>) -&gt; <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>(&amp;self, other: &amp;<a class='type' href='../../../ramp/ll/limb/type.BaseInt.html' title='ramp::ll::limb::BaseInt'>BaseInt</a>) -&gt; <a class='primitive' href='https://doc.rust-lang.org/nightly/std/primitive.bool.html'>bool</a></code></h4>
</div><h3 class='impl'><code>impl <a class='trait' href='https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html' title='core::cmp::PartialOrd'>PartialOrd</a>&lt;<a class='type' href='../../../ramp/ll/limb/type.BaseInt.html' title='ramp::ll::limb::BaseInt'>BaseInt</a>&gt; for <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></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>(&amp;self, other: &amp;<a class='type' href='../../../ramp/ll/limb/type.BaseInt.html' title='ramp::ll::limb::BaseInt'>BaseInt</a>) -&gt; <a class='enum' href='https://doc.rust-lang.org/nightly/core/option/enum.Option.html' title='core::option::Option'>Option</a>&lt;<a class='enum' href='https://doc.rust-lang.org/nightly/core/cmp/enum.Ordering.html' title='core::cmp::Ordering'>Ordering</a>&gt;</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>(&amp;self, other: &amp;<a class='type' href='../../../ramp/ll/limb/type.BaseInt.html' title='ramp::ll::limb::BaseInt'>BaseInt</a>) -&gt; <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>(&amp;self, other: &amp;<a class='type' href='../../../ramp/ll/limb/type.BaseInt.html' title='ramp::ll::limb::BaseInt'>BaseInt</a>) -&gt; <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>(&amp;self, other: &amp;<a class='type' href='../../../ramp/ll/limb/type.BaseInt.html' title='ramp::ll::limb::BaseInt'>BaseInt</a>) -&gt; <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>(&amp;self, other: &amp;<a class='type' href='../../../ramp/ll/limb/type.BaseInt.html' title='ramp::ll::limb::BaseInt'>BaseInt</a>) -&gt; <a class='primitive' href='https://doc.rust-lang.org/nightly/std/primitive.bool.html'>bool</a></code></h4>
</div><h3 class='impl'><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></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>(&amp;self, f: &amp;mut <a class='struct' href='https://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html' title='core::fmt::Formatter'>Formatter</a>) -&gt; <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'><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></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>(&amp;self, f: &amp;mut <a class='struct' href='https://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html' title='core::fmt::Formatter'>Formatter</a>) -&gt; <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'><code>impl <a class='trait' href='https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html' title='core::cmp::PartialEq'>PartialEq</a>&lt;<a class='struct' href='../../../ramp/int/struct.Int.html' title='ramp::int::Int'>Int</a>&gt; for <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></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>(&amp;self, other: &amp;<a class='struct' href='../../../ramp/int/struct.Int.html' title='ramp::int::Int'>Int</a>) -&gt; <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>(&amp;self, other: &amp;Rhs) -&gt; <a class='primitive' href='https://doc.rust-lang.org/nightly/std/primitive.bool.html'>bool</a></code><span class="since">1.0.0</span></h4>
</div><h3 class='impl'><code>impl <a class='trait' href='https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html' title='core::cmp::PartialOrd'>PartialOrd</a>&lt;<a class='struct' href='../../../ramp/int/struct.Int.html' title='ramp::int::Int'>Int</a>&gt; for <a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a></code></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>(&amp;self, other: &amp;<a class='struct' href='../../../ramp/int/struct.Int.html' title='ramp::int::Int'>Int</a>) -&gt; <a class='enum' href='https://doc.rust-lang.org/nightly/core/option/enum.Option.html' title='core::option::Option'>Option</a>&lt;<a class='enum' href='https://doc.rust-lang.org/nightly/core/cmp/enum.Ordering.html' title='core::cmp::Ordering'>Ordering</a>&gt;</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>(&amp;self, other: &amp;Rhs) -&gt; <a class='primitive' href='https://doc.rust-lang.org/nightly/std/primitive.bool.html'>bool</a></code><span class="since">1.0.0</span></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>(&amp;self, other: &amp;Rhs) -&gt; <a class='primitive' href='https://doc.rust-lang.org/nightly/std/primitive.bool.html'>bool</a></code><span class="since">1.0.0</span></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>(&amp;self, other: &amp;Rhs) -&gt; <a class='primitive' href='https://doc.rust-lang.org/nightly/std/primitive.bool.html'>bool</a></code><span class="since">1.0.0</span></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>(&amp;self, other: &amp;Rhs) -&gt; <a class='primitive' href='https://doc.rust-lang.org/nightly/std/primitive.bool.html'>bool</a></code><span class="since">1.0.0</span></h4>
</div><h3 id='derived_implementations'>Derived Implementations </h3><h3 class='impl'><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></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>&lt;__H: <a class='trait' href='https://doc.rust-lang.org/nightly/core/hash/trait.Hasher.html' title='core::hash::Hasher'>Hasher</a>&gt;(&amp;self, __arg_0: &amp;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>&lt;H&gt;(data: <a class='primitive' href='https://doc.rust-lang.org/nightly/std/primitive.slice.html'>&amp;[Self]</a>, state: &amp;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><span class="since">1.3.0</span></h4>
</div><h3 class='impl'><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></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>(&amp;self, __arg_0: &amp;<a class='struct' href='../../../ramp/ll/limb/struct.Limb.html' title='ramp::ll::limb::Limb'>Limb</a>) -&gt; <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'><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></h3><div class='impl-items'></div><h3 class='impl'><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></h3><div class='impl-items'></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>&larrb;</dt>
<dd>Move up in search results</dd>
<dt>&rarrb;</dt>
<dd>Move down in search results</dd>
<dt>&#9166;</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>