index.html 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. <!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 `num_bigint` crate."><meta name="keywords" content="rust, rustlang, rust-lang, num_bigint"><title>num_bigint - Rust</title><link rel="stylesheet" type="text/css" href="../normalize.css"><link rel="stylesheet" type="text/css" href="../rustdoc.css" id="mainThemeStyle"><link rel="stylesheet" type="text/css" href="../dark.css"><link rel="stylesheet" type="text/css" href="../light.css" id="themeStyle"><script src="../storage.js"></script></head><body class="rustdoc mod"><!--[if lte IE 8]><div class="warning">This old browser is unsupported and will most likely display funky things.</div><![endif]--><nav class="sidebar"><div class="sidebar-menu">&#9776;</div><p class='location'>Crate num_bigint</p><div class="sidebar-elems"><div class="block items"><ul><li><a href="#modules">Modules</a></li><li><a href="#structs">Structs</a></li><li><a href="#enums">Enums</a></li><li><a href="#constants">Constants</a></li><li><a href="#traits">Traits</a></li><li><a href="#types">Type Definitions</a></li></ul></div><p class='location'></p><script>window.sidebarCurrent = {name: 'num_bigint', ty: 'mod', relpath: '../'};</script></div></nav><div class="theme-picker"><button id="theme-picker" aria-label="Pick another theme!"><img src="../brush.svg" width="18" alt="Pick another theme!"></button><div id="theme-choices"></div></div><script src="../theme.js"></script><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"><a id="settings-menu" href="../settings.html"><img src="../wheel.svg" width="18" alt="Change settings"></a></div></form></nav><section id="main" class="content"><h1 class='fqn'><span class='in-band'>Crate <a class="mod" href=''>num_bigint</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 class='srclink' href='../src/num_bigint/lib.rs.html#11-156' title='goto source code'>[src]</a></span></h1><div class='docblock'><p>A Big integer (signed version: <code>BigInt</code>, unsigned version: <code>BigUint</code>).</p>
  2. <p>A <code>BigUint</code> is represented as a vector of <code>BigDigit</code>s.
  3. A <code>BigInt</code> is a combination of <code>BigUint</code> and <code>Sign</code>.</p>
  4. <p>Common numerical operations are overloaded, so we can treat them
  5. the same way we treat other numbers.</p>
  6. <h2 id="example" class="section-header"><a href="#example">Example</a></h2>
  7. <pre class="rust rust-example-rendered">
  8. <span class="kw">extern</span> <span class="kw">crate</span> <span class="ident">num_bigint</span>;
  9. <span class="kw">extern</span> <span class="kw">crate</span> <span class="ident">num_traits</span>;
  10. <span class="kw">use</span> <span class="ident">num_bigint</span>::<span class="ident">BigUint</span>;
  11. <span class="kw">use</span> <span class="ident">num_traits</span>::{<span class="ident">Zero</span>, <span class="ident">One</span>};
  12. <span class="kw">use</span> <span class="ident">std</span>::<span class="ident">mem</span>::<span class="ident">replace</span>;
  13. <span class="comment">// Calculate large fibonacci numbers.</span>
  14. <span class="kw">fn</span> <span class="ident">fib</span>(<span class="ident">n</span>: <span class="ident">usize</span>) <span class="op">-&gt;</span> <span class="ident">BigUint</span> {
  15. <span class="kw">let</span> <span class="kw-2">mut</span> <span class="ident">f0</span>: <span class="ident">BigUint</span> <span class="op">=</span> <span class="ident">Zero</span>::<span class="ident">zero</span>();
  16. <span class="kw">let</span> <span class="kw-2">mut</span> <span class="ident">f1</span>: <span class="ident">BigUint</span> <span class="op">=</span> <span class="ident">One</span>::<span class="ident">one</span>();
  17. <span class="kw">for</span> <span class="kw">_</span> <span class="kw">in</span> <span class="number">0</span>..<span class="ident">n</span> {
  18. <span class="kw">let</span> <span class="ident">f2</span> <span class="op">=</span> <span class="ident">f0</span> <span class="op">+</span> <span class="kw-2">&amp;</span><span class="ident">f1</span>;
  19. <span class="comment">// This is a low cost way of swapping f0 with f1 and f1 with f2.</span>
  20. <span class="ident">f0</span> <span class="op">=</span> <span class="ident">replace</span>(<span class="kw-2">&amp;</span><span class="kw-2">mut</span> <span class="ident">f1</span>, <span class="ident">f2</span>);
  21. }
  22. <span class="ident">f0</span>
  23. }
  24. <span class="comment">// This is a very large number.</span>
  25. <span class="macro">println</span><span class="macro">!</span>(<span class="string">&quot;fib(1000) = {}&quot;</span>, <span class="ident">fib</span>(<span class="number">1000</span>));</pre>
  26. <p>It's easy to generate large random numbers:</p>
  27. <pre class="rust rust-example-rendered">
  28. <span class="kw">extern</span> <span class="kw">crate</span> <span class="ident">rand</span>;
  29. <span class="kw">extern</span> <span class="kw">crate</span> <span class="ident">num_bigint</span> <span class="kw">as</span> <span class="ident">bigint</span>;
  30. <span class="kw">use</span> <span class="ident">bigint</span>::{<span class="ident">ToBigInt</span>, <span class="ident">RandBigInt</span>};
  31. <span class="kw">let</span> <span class="kw-2">mut</span> <span class="ident">rng</span> <span class="op">=</span> <span class="ident">rand</span>::<span class="ident">thread_rng</span>();
  32. <span class="kw">let</span> <span class="ident">a</span> <span class="op">=</span> <span class="ident">rng</span>.<span class="ident">gen_bigint</span>(<span class="number">1000</span>);
  33. <span class="kw">let</span> <span class="ident">low</span> <span class="op">=</span> <span class="op">-</span><span class="number">10000</span>.<span class="ident">to_bigint</span>().<span class="ident">unwrap</span>();
  34. <span class="kw">let</span> <span class="ident">high</span> <span class="op">=</span> <span class="number">10000</span>.<span class="ident">to_bigint</span>().<span class="ident">unwrap</span>();
  35. <span class="kw">let</span> <span class="ident">b</span> <span class="op">=</span> <span class="ident">rng</span>.<span class="ident">gen_bigint_range</span>(<span class="kw-2">&amp;</span><span class="ident">low</span>, <span class="kw-2">&amp;</span><span class="ident">high</span>);
  36. <span class="comment">// Probably an even larger number.</span>
  37. <span class="macro">println</span><span class="macro">!</span>(<span class="string">&quot;{}&quot;</span>, <span class="ident">a</span> <span class="op">*</span> <span class="ident">b</span>);
  38. </pre>
  39. <h2 id="compatibility" class="section-header"><a href="#compatibility">Compatibility</a></h2>
  40. <p>The <code>num-bigint</code> crate is tested for rustc 1.8 and greater.</p>
  41. </div><h2 id='modules' class='section-header'><a href="#modules">Modules</a></h2>
  42. <table>
  43. <tr class=' module-item'>
  44. <td><a class="mod" href="big_digit/index.html"
  45. title='mod num_bigint::big_digit'>big_digit</a></td>
  46. <td class='docblock-short'>
  47. </td>
  48. </tr></table><h2 id='structs' class='section-header'><a href="#structs">Structs</a></h2>
  49. <table>
  50. <tr class=' module-item'>
  51. <td><a class="struct" href="struct.BigInt.html"
  52. title='struct num_bigint::BigInt'>BigInt</a></td>
  53. <td class='docblock-short'>
  54. <p>A big signed integer type.</p>
  55. </td>
  56. </tr>
  57. <tr class=' module-item'>
  58. <td><a class="struct" href="struct.BigUint.html"
  59. title='struct num_bigint::BigUint'>BigUint</a></td>
  60. <td class='docblock-short'>
  61. <p>A big unsigned integer type.</p>
  62. </td>
  63. </tr></table><h2 id='enums' class='section-header'><a href="#enums">Enums</a></h2>
  64. <table>
  65. <tr class=' module-item'>
  66. <td><a class="enum" href="enum.ParseBigIntError.html"
  67. title='enum num_bigint::ParseBigIntError'>ParseBigIntError</a></td>
  68. <td class='docblock-short'>
  69. </td>
  70. </tr>
  71. <tr class=' module-item'>
  72. <td><a class="enum" href="enum.Sign.html"
  73. title='enum num_bigint::Sign'>Sign</a></td>
  74. <td class='docblock-short'>
  75. <p>A Sign is a <code>BigInt</code>'s composing element.</p>
  76. </td>
  77. </tr></table><h2 id='constants' class='section-header'><a href="#constants">Constants</a></h2>
  78. <table>
  79. <tr class=' module-item'>
  80. <td><a class="constant" href="constant.ZERO_BIG_DIGIT.html"
  81. title='constant num_bigint::ZERO_BIG_DIGIT'>ZERO_BIG_DIGIT</a></td>
  82. <td class='docblock-short'>
  83. </td>
  84. </tr></table><h2 id='traits' class='section-header'><a href="#traits">Traits</a></h2>
  85. <table>
  86. <tr class=' module-item'>
  87. <td><a class="trait" href="trait.RandBigInt.html"
  88. title='trait num_bigint::RandBigInt'>RandBigInt</a></td>
  89. <td class='docblock-short'>
  90. </td>
  91. </tr>
  92. <tr class=' module-item'>
  93. <td><a class="trait" href="trait.ToBigInt.html"
  94. title='trait num_bigint::ToBigInt'>ToBigInt</a></td>
  95. <td class='docblock-short'>
  96. <p>A generic trait for converting a value to a <code>BigInt</code>.</p>
  97. </td>
  98. </tr>
  99. <tr class=' module-item'>
  100. <td><a class="trait" href="trait.ToBigUint.html"
  101. title='trait num_bigint::ToBigUint'>ToBigUint</a></td>
  102. <td class='docblock-short'>
  103. <p>A generic trait for converting a value to a <code>BigUint</code>.</p>
  104. </td>
  105. </tr></table><h2 id='types' class='section-header'><a href="#types">Type Definitions</a></h2>
  106. <table>
  107. <tr class=' module-item'>
  108. <td><a class="type" href="type.BigDigit.html"
  109. title='type num_bigint::BigDigit'>BigDigit</a></td>
  110. <td class='docblock-short'>
  111. <p>A <code>BigDigit</code> is a <code>BigUint</code>'s composing element.</p>
  112. </td>
  113. </tr>
  114. <tr class=' module-item'>
  115. <td><a class="type" href="type.DoubleBigDigit.html"
  116. title='type num_bigint::DoubleBigDigit'>DoubleBigDigit</a></td>
  117. <td class='docblock-short'>
  118. <p>A <code>DoubleBigDigit</code> is the internal type used to do the computations. Its
  119. size is the double of the size of <code>BigDigit</code>.</p>
  120. </td>
  121. </tr></table></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><kbd>?</kbd></dt><dd>Show this help dialog</dd><dt><kbd>S</kbd></dt><dd>Focus the search field</dd><dt><kbd>↑</kbd></dt><dd>Move up in search results</dd><dt><kbd>↓</kbd></dt><dd>Move down in search results</dd><dt><kbd>↹</kbd></dt><dd>Switch tab</dd><dt><kbd>&#9166;</kbd></dt><dd>Go to active search result</dd><dt><kbd>+</kbd></dt><dd>Expand all sections</dd><dt><kbd>-</kbd></dt><dd>Collapse all sections</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><p>Search multiple things at once by splitting your query with comma (e.g. <code>str,u8</code> or <code>String,struct:Vec,test</code>)</p></div></div></aside><script>window.rootPath = "../";window.currentCrate = "num_bigint";</script><script src="../aliases.js"></script><script src="../main.js"></script><script defer src="../search-index.js"></script></body></html>