You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

669 lines
52 KiB

11 months ago
<!DOCTYPE HTML>
<html lang="zh-CN" class="light sidebar-visible" dir="ltr">
<head>
<!-- Book generated using mdBook -->
<meta charset="UTF-8">
<title>迭代器 Iterator - Rust语言圣经(Rust Course)</title>
<!-- Custom HTML head -->
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#ffffff">
<link rel="icon" href="../../favicon-de23e50b.svg">
<link rel="shortcut icon" href="../../favicon-8114d1fc.png">
<link rel="stylesheet" href="../../css/variables-8adf115d.css">
<link rel="stylesheet" href="../../css/general-2459343d.css">
<link rel="stylesheet" href="../../css/chrome-ae938929.css">
<link rel="stylesheet" href="../../css/print-9e4910d8.css" media="print">
11 months ago
<!-- Fonts -->
<link rel="stylesheet" href="../../fonts/fonts-9644e21d.css">
11 months ago
<!-- Highlight.js Stylesheets -->
<link rel="stylesheet" id="mdbook-highlight-css" href="../../highlight-493f70e1.css">
<link rel="stylesheet" id="mdbook-tomorrow-night-css" href="../../tomorrow-night-4c0ae647.css">
<link rel="stylesheet" id="mdbook-ayu-highlight-css" href="../../ayu-highlight-3fdfc3ac.css">
11 months ago
<!-- Custom theme stylesheets -->
<link rel="stylesheet" href="../../theme/style-78591068.css">
11 months ago
<!-- Provide site root and default themes to javascript -->
<script>
const path_to_root = "../../";
const default_light_theme = "light";
const default_dark_theme = "navy";
window.path_to_searchindex_js = "../../searchindex-4dbab867.js";
11 months ago
</script>
<!-- Start loading toc.js asap -->
<script src="../../toc-42887675.js"></script>
11 months ago
</head>
<body>
<div id="mdbook-help-container">
<div id="mdbook-help-popup">
<h2 class="mdbook-help-title">Keyboard shortcuts</h2>
<div>
<p>Press <kbd></kbd> or <kbd></kbd> to navigate between chapters</p>
<p>Press <kbd>S</kbd> or <kbd>/</kbd> to search in the book</p>
<p>Press <kbd>?</kbd> to show this help</p>
<p>Press <kbd>Esc</kbd> to hide this help</p>
</div>
</div>
</div>
<div id="mdbook-body-container">
11 months ago
<!-- Work around some values being stored in localStorage wrapped in quotes -->
<script>
try {
let theme = localStorage.getItem('mdbook-theme');
let sidebar = localStorage.getItem('mdbook-sidebar');
if (theme.startsWith('"') && theme.endsWith('"')) {
localStorage.setItem('mdbook-theme', theme.slice(1, theme.length - 1));
}
if (sidebar.startsWith('"') && sidebar.endsWith('"')) {
localStorage.setItem('mdbook-sidebar', sidebar.slice(1, sidebar.length - 1));
}
} catch (e) { }
</script>
<!-- Set the theme before any content is loaded, prevents flash -->
<script>
const default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? default_dark_theme : default_light_theme;
let theme;
try { theme = localStorage.getItem('mdbook-theme'); } catch(e) { }
if (theme === null || theme === undefined) { theme = default_theme; }
const html = document.documentElement;
html.classList.remove('light')
html.classList.add(theme);
html.classList.add("js");
</script>
<input type="checkbox" id="mdbook-sidebar-toggle-anchor" class="hidden">
11 months ago
<!-- Hide / unhide sidebar before it is displayed -->
<script>
let sidebar = null;
const sidebar_toggle = document.getElementById("mdbook-sidebar-toggle-anchor");
11 months ago
if (document.body.clientWidth >= 1080) {
try { sidebar = localStorage.getItem('mdbook-sidebar'); } catch(e) { }
sidebar = sidebar || 'visible';
} else {
sidebar = 'hidden';
sidebar_toggle.checked = false;
}
if (sidebar === 'visible') {
sidebar_toggle.checked = true;
} else {
html.classList.remove('sidebar-visible');
11 months ago
}
</script>
<nav id="mdbook-sidebar" class="sidebar" aria-label="Table of contents">
11 months ago
<!-- populated by js -->
<mdbook-sidebar-scrollbox class="sidebar-scrollbox"></mdbook-sidebar-scrollbox>
<noscript>
<iframe class="sidebar-iframe-outer" src="../../toc.html"></iframe>
</noscript>
<div id="mdbook-sidebar-resize-handle" class="sidebar-resize-handle">
11 months ago
<div class="sidebar-resize-indicator"></div>
</div>
</nav>
<div id="mdbook-page-wrapper" class="page-wrapper">
11 months ago
<div class="page">
<div id="mdbook-menu-bar-hover-placeholder"></div>
<div id="mdbook-menu-bar" class="menu-bar sticky">
11 months ago
<div class="left-buttons">
<label id="mdbook-sidebar-toggle" class="icon-button" for="mdbook-sidebar-toggle-anchor" title="Toggle Table of Contents" aria-label="Toggle Table of Contents" aria-controls="mdbook-sidebar">
<span class=fa-svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M0 96C0 78.3 14.3 64 32 64H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 128 0 113.7 0 96zM0 256c0-17.7 14.3-32 32-32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32zM448 416c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H416c17.7 0 32 14.3 32 32z"/></svg></span>
11 months ago
</label>
<button id="mdbook-theme-toggle" class="icon-button" type="button" title="Change theme" aria-label="Change theme" aria-haspopup="true" aria-expanded="false" aria-controls="mdbook-theme-list">
<span class=fa-svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M371.3 367.1c27.3-3.9 51.9-19.4 67.2-42.9L600.2 74.1c12.6-19.5 9.4-45.3-7.6-61.2S549.7-4.4 531.1 9.6L294.4 187.2c-24 18-38.2 46.1-38.4 76.1L371.3 367.1zm-19.6 25.4l-116-104.4C175.9 290.3 128 339.6 128 400c0 3.9 .2 7.8 .6 11.6c1.8 17.5-10.2 36.4-27.8 36.4H96c-17.7 0-32 14.3-32 32s14.3 32 32 32H240c61.9 0 112-50.1 112-112c0-2.5-.1-5-.2-7.5z"/></svg></span>
11 months ago
</button>
<ul id="mdbook-theme-list" class="theme-popup" aria-label="Themes" role="menu">
<li role="none"><button role="menuitem" class="theme" id="mdbook-theme-default_theme">Auto</button></li>
<li role="none"><button role="menuitem" class="theme" id="mdbook-theme-light">Light</button></li>
<li role="none"><button role="menuitem" class="theme" id="mdbook-theme-rust">Rust</button></li>
<li role="none"><button role="menuitem" class="theme" id="mdbook-theme-coal">Coal</button></li>
<li role="none"><button role="menuitem" class="theme" id="mdbook-theme-navy">Navy</button></li>
<li role="none"><button role="menuitem" class="theme" id="mdbook-theme-ayu">Ayu</button></li>
11 months ago
</ul>
<button id="mdbook-search-toggle" class="icon-button" type="button" title="Search (`/`)" aria-label="Toggle Searchbar" aria-expanded="false" aria-keyshortcuts="/ s" aria-controls="mdbook-searchbar">
<span class=fa-svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM208 352c79.5 0 144-64.5 144-144s-64.5-144-144-144S64 128.5 64 208s64.5 144 144 144z"/></svg></span>
11 months ago
</button>
</div>
<h1 class="menu-title">Rust语言圣经(Rust Course)</h1>
<div class="right-buttons">
<a href="../../print.html" title="Print this book" aria-label="Print this book">
<span class=fa-svg id="print-button"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M128 0C92.7 0 64 28.7 64 64v96h64V64H354.7L384 93.3V160h64V93.3c0-17-6.7-33.3-18.7-45.3L400 18.7C388 6.7 371.7 0 354.7 0H128zM384 352v32 64H128V384 368 352H384zm64 32h32c17.7 0 32-14.3 32-32V256c0-35.3-28.7-64-64-64H64c-35.3 0-64 28.7-64 64v96c0 17.7 14.3 32 32 32H64v64c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V384zm-16-88c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24z"/></svg></span>
11 months ago
</a>
<a href="https://github.com/sunface/rust-course" title="Git repository" aria-label="Git repository">
<span class=fa-svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"/></svg></span>
11 months ago
</a>
<a href="https://github.com/sunface/rust-course/edit/main/src/advance/functional-programing/iterator.md" title="Suggest an edit" aria-label="Suggest an edit" rel="edit">
<span class=fa-svg id="git-edit-button"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M421.7 220.3l-11.3 11.3-22.6 22.6-205 205c-6.6 6.6-14.8 11.5-23.8 14.1L30.8 511c-8.4 2.5-17.5 .2-23.7-6.1S-1.5 489.7 1 481.2L38.7 353.1c2.6-9 7.5-17.2 14.1-23.8l205-205 22.6-22.6 11.3-11.3 33.9 33.9 62.1 62.1 33.9 33.9zM96 353.9l-9.3 9.3c-.9 .9-1.6 2.1-2 3.4l-25.3 86 86-25.3c1.3-.4 2.5-1.1 3.4-2l9.3-9.3H112c-8.8 0-16-7.2-16-16V353.9zM453.3 19.3l39.4 39.4c25 25 25 65.5 0 90.5l-14.5 14.5-22.6 22.6-11.3 11.3-33.9-33.9-62.1-62.1L314.3 67.7l11.3-11.3 22.6-22.6 14.5-14.5c25-25 65.5-25 90.5 0z"/></svg></span>
11 months ago
</a>
</div>
</div>
<div id="mdbook-search-wrapper" class="hidden">
<form id="mdbook-searchbar-outer" class="searchbar-outer">
<div class="search-wrapper">
<input type="search" id="mdbook-searchbar" name="searchbar" placeholder="Search this book ..." aria-controls="mdbook-searchresults-outer" aria-describedby="searchresults-header">
<div class="spinner-wrapper">
<span class=fa-svg id="fa-spin"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M304 48c0-26.5-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48zm0 416c0-26.5-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48zM48 304c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48zm464-48c0-26.5-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48zM142.9 437c18.7-18.7 18.7-49.1 0-67.9s-49.1-18.7-67.9 0s-18.7 49.1 0 67.9s49.1 18.7 67.9 0zm0-294.2c18.7-18.7 18.7-49.1 0-67.9S93.7 56.2 75 75s-18.7 49.1 0 67.9s49.1 18.7 67.9 0zM369.1 437c18.7 18.7 49.1 18.7 67.9 0s18.7-49.1 0-67.9s-49.1-18.7-67.9 0s-18.7 49.1 0 67.9z"/></svg></span>
</div>
</div>
11 months ago
</form>
<div id="mdbook-searchresults-outer" class="searchresults-outer hidden">
<div id="mdbook-searchresults-header" class="searchresults-header"></div>
<ul id="mdbook-searchresults">
11 months ago
</ul>
</div>
</div>
<!-- Apply ARIA attributes after the sidebar and the sidebar toggle button are added to the DOM -->
<script>
document.getElementById('mdbook-sidebar-toggle').setAttribute('aria-expanded', sidebar === 'visible');
document.getElementById('mdbook-sidebar').setAttribute('aria-hidden', sidebar !== 'visible');
Array.from(document.querySelectorAll('#mdbook-sidebar a')).forEach(function(link) {
11 months ago
link.setAttribute('tabIndex', sidebar === 'visible' ? 0 : -1);
});
</script>
<div id="mdbook-content" class="content">
11 months ago
<main>
<h1 id="迭代器-iterator"><a class="header" href="#迭代器-iterator">迭代器 Iterator</a></h1>
<p>如果你询问一个 Rust 资深开发:写 Rust 项目最需要掌握什么?相信迭代器往往就是答案之一。无论你是编程新手亦或是高手,实际上大概率都用过迭代器,虽然自己可能并没有意识到这一点:)</p>
<p>迭代器允许我们迭代一个连续的集合,例如数组、动态数组 <code>Vec</code><code>HashMap</code> 等,在此过程中,只需关心集合中的元素如何处理,而无需关心如何开始、如何结束、按照什么样的索引去访问等问题。</p>
<h2 id="for-循环与迭代器"><a class="header" href="#for-循环与迭代器">For 循环与迭代器</a></h2>
<p>从用途来看,迭代器跟 <code>for</code> 循环颇为相似,都是去遍历一个集合,但是实际上它们存在不小的差别,其中最主要的差别就是:<strong>是否通过索引来访问集合</strong></p>
<p>例如以下的 JS 代码就是一个循环:</p>
<pre><code class="language-javascript">let arr = [1, 2, 3];
for (let i = 0; i &lt; arr.length; i++) {
console.log(arr[i]);
}
</code></pre>
<p>在上面代码中,我们设置索引的开始点和结束点,然后再通过索引去访问元素 <code>arr[i]</code>,这就是典型的循环,来对比下 Rust 中的 <code>for</code></p>
<pre class="playground"><code class="language-rust edition2021"><span class="boring">#![allow(unused)]
11 months ago
</span><span class="boring">fn main() {
</span>let arr = [1, 2, 3];
for v in arr {
println!("{}",v);
}
<span class="boring">}</span></code></pre>
11 months ago
<p>首先,不得不说这两语法还挺像!与 JS 循环不同,<code>Rust</code>中没有使用索引,它把 <code>arr</code> 数组当成一个迭代器直接去遍历其中的元素从哪里开始从哪里结束都无需操心。因此严格来说Rust 中的 <code>for</code> 循环是编译器提供的语法糖,最终还是对迭代器中的元素进行遍历。</p>
<p>那又有同学要发问了,在 Rust 中数组是迭代器吗?因为在之前的代码中直接对数组 <code>arr</code> 进行了迭代,答案是 <code>No</code>。那既然数组不是迭代器,为啥咱可以对它的元素进行迭代呢?</p>
<p>简而言之就是数组实现了 <code>IntoIterator</code> 特征Rust 通过 <code>for</code> 语法糖,自动把实现了该特征的数组类型转换为迭代器(你也可以为自己的集合类型实现此特征),最终让我们可以直接对一个数组进行迭代,类似的还有:</p>
<pre class="playground"><code class="language-rust edition2021"><span class="boring">#![allow(unused)]
11 months ago
</span><span class="boring">fn main() {
</span>for i in 1..10 {
println!("{}", i);
}
<span class="boring">}</span></code></pre>
11 months ago
<p>直接对数值序列进行迭代,也是很常见的使用方式。</p>
<p><code>IntoIterator</code> 特征拥有一个 <code>into_iter</code> 方法,因此我们还可以显式的把数组转换成迭代器:</p>
<pre class="playground"><code class="language-rust edition2021"><span class="boring">#![allow(unused)]
11 months ago
</span><span class="boring">fn main() {
</span>let arr = [1, 2, 3];
for v in arr.into_iter() {
println!("{}", v);
}
<span class="boring">}</span></code></pre>
11 months ago
<p>迭代器是函数语言的核心特性,它赋予了 Rust 远超于循环的强大表达能力,我们将在本章中一一为大家进行展现。</p>
<h2 id="惰性初始化"><a class="header" href="#惰性初始化">惰性初始化</a></h2>
<p>在 Rust 中,迭代器是惰性的,意味着如果你不使用它,那么它将不会发生任何事:</p>
<pre class="playground"><code class="language-rust edition2021"><span class="boring">#![allow(unused)]
11 months ago
</span><span class="boring">fn main() {
</span>let v1 = vec![1, 2, 3];
let v1_iter = v1.iter();
for val in v1_iter {
println!("{}", val);
}
<span class="boring">}</span></code></pre>
11 months ago
<p><code>for</code> 循环之前,我们只是简单的创建了一个迭代器 <code>v1_iter</code>,此时不会发生任何迭代行为,只有在 <code>for</code> 循环开始后,迭代器才会开始迭代其中的元素,最后打印出来。</p>
<p>这种惰性初始化的方式确保了创建迭代器不会有任何额外的性能损耗,其中的元素也不会被消耗,只有使用到该迭代器的时候,一切才开始。</p>
<h2 id="next-方法"><a class="header" href="#next-方法">next 方法</a></h2>
<p>对于 <code>for</code> 如何遍历迭代器,还有一个问题,它如何取出迭代器中的元素?</p>
<p>先来看一个特征:</p>
<pre class="playground"><code class="language-rust edition2021"><span class="boring">#![allow(unused)]
11 months ago
</span><span class="boring">fn main() {
</span>pub trait Iterator {
type Item;
fn next(&amp;mut self) -&gt; Option&lt;Self::Item&gt;;
// 省略其余有默认实现的方法
}
<span class="boring">}</span></code></pre>
<p>呦,该特征竟然和迭代器 <code>iterator</code> 同名,难不成。。。没错,它们就是有一腿。<strong>迭代器之所以成为迭代器,就是因为实现了 <code>Iterator</code> 特征</strong>,要实现该特征,最主要的就是实现其中的 <code>next</code> 方法,该方法控制如何从集合中取值,最终返回值的类型是<a href="https://course.rs/basic/trait/advance-trait#关联类型">关联类型</a> <code>Item</code></p>
11 months ago
<p>因此,之前问题的答案已经很明显:<code>for</code> 循环通过不停调用迭代器上的 <code>next</code> 方法,来获取迭代器中的元素。</p>
<p>既然 <code>for</code> 可以调用 <code>next</code> 方法,是不是意味着我们也可以?来试试:</p>
<pre class="playground"><code class="language-rust edition2021">fn main() {
11 months ago
let arr = [1, 2, 3];
let mut arr_iter = arr.into_iter();
assert_eq!(arr_iter.next(), Some(1));
assert_eq!(arr_iter.next(), Some(2));
assert_eq!(arr_iter.next(), Some(3));
assert_eq!(arr_iter.next(), None);
}</code></pre>
11 months ago
<p>果不其然,将 <code>arr</code> 转换成迭代器后,通过调用其上的 <code>next</code> 方法,我们获取了 <code>arr</code> 中的元素,有两点需要注意:</p>
<ul>
<li><code>next</code> 方法返回的是 <code>Option</code> 类型,当有值时返回 <code>Some(i32)</code>,无值时返回 <code>None</code></li>
<li>遍历是按照迭代器中元素的排列顺序依次进行的,因此我们严格按照数组中元素的顺序取出了 <code>Some(1)</code><code>Some(2)</code><code>Some(3)</code></li>
<li>手动迭代必须将迭代器声明为 <code>mut</code> 可变,因为调用 <code>next</code> 会改变迭代器其中的状态数据(当前遍历的位置等),而 <code>for</code> 循环去迭代则无需标注 <code>mut</code>,因为它会帮我们自动完成</li>
</ul>
<p>总之,<code>next</code> 方法对<strong>迭代器的遍历是消耗性的</strong>,每次消耗它一个元素,最终迭代器中将没有任何元素,只能返回 <code>None</code></p>
<h4 id="例子模拟实现-for-循环"><a class="header" href="#例子模拟实现-for-循环">例子:模拟实现 for 循环</a></h4>
<p>因为 <code>for</code> 循环是迭代器的语法糖,因此我们完全可以通过迭代器来模拟实现它:</p>
<pre class="playground"><code class="language-rust edition2021"><span class="boring">#![allow(unused)]
11 months ago
</span><span class="boring">fn main() {
</span>let values = vec![1, 2, 3];
{
let result = match IntoIterator::into_iter(values) {
mut iter =&gt; loop {
match iter.next() {
Some(x) =&gt; { println!("{}", x); },
None =&gt; break,
}
},
};
result
}
<span class="boring">}</span></code></pre>
<p><code>IntoIterator::into_iter</code> 是使用<a href="https://course.rs/basic/trait/advance-trait.html#完全限定语法">完全限定</a>的方式去调用 <code>into_iter</code> 方法,这种调用方式跟 <code>values.into_iter()</code> 是等价的。</p>
11 months ago
<p>同时我们使用了 <code>loop</code> 循环配合 <code>next</code> 方法来遍历迭代器中的元素,当迭代器返回 <code>None</code> 时,跳出循环。</p>
<h2 id="intoiterator-特征"><a class="header" href="#intoiterator-特征">IntoIterator 特征</a></h2>
<p>其实有一个细节,由于 <code>Vec</code> 动态数组实现了 <code>IntoIterator</code> 特征,因此可以通过 <code>into_iter</code> 将其转换为迭代器,那如果本身就是一个迭代器,该怎么办?实际上,迭代器自身也实现了 <code>IntoIterator</code>,标准库早就帮我们考虑好了:</p>
<pre class="playground"><code class="language-rust edition2021"><span class="boring">#![allow(unused)]
11 months ago
</span><span class="boring">fn main() {
</span>impl&lt;I: Iterator&gt; IntoIterator for I {
type Item = I::Item;
type IntoIter = I;
#[inline]
fn into_iter(self) -&gt; I {
self
}
}
<span class="boring">}</span></code></pre>
11 months ago
<p>最终你完全可以写出这样的奇怪代码:</p>
<pre class="playground"><code class="language-rust edition2021">fn main() {
11 months ago
let values = vec![1, 2, 3];
for v in values.into_iter().into_iter().into_iter() {
println!("{}",v)
}
}</code></pre>
11 months ago
<h4 id="into_iter-iter-iter_mut"><a class="header" href="#into_iter-iter-iter_mut">into_iter, iter, iter_mut</a></h4>
<p>在之前的代码中,我们统一使用了 <code>into_iter</code> 的方式将数组转化为迭代器,除此之外,还有 <code>iter</code><code>iter_mut</code>,聪明的读者应该大概能猜到这三者的区别:</p>
<ul>
<li><code>into_iter</code> 会夺走所有权</li>
<li><code>iter</code> 是借用</li>
<li><code>iter_mut</code> 是可变借用</li>
</ul>
<p>其实如果以后见多识广了,你会发现这种问题一眼就能看穿,<code>into_</code> 之类的,都是拿走所有权,<code>_mut</code> 之类的都是可变借用,剩下的就是不可变借用。</p>
<p>使用一段代码来解释下:</p>
<pre class="playground"><code class="language-rust edition2021">fn main() {
11 months ago
let values = vec![1, 2, 3];
for v in values.into_iter() {
println!("{}", v)
}
// 下面的代码将报错,因为 values 的所有权在上面 `for` 循环中已经被转移走
// println!("{:?}",values);
let values = vec![1, 2, 3];
let _values_iter = values.iter();
// 不会报错,因为 values_iter 只是借用了 values 中的元素
println!("{:?}", values);
let mut values = vec![1, 2, 3];
// 对 values 中的元素进行可变借用
let mut values_iter_mut = values.iter_mut();
// 取出第一个元素并修改为0
if let Some(v) = values_iter_mut.next() {
*v = 0;
}
// 输出[0, 2, 3]
println!("{:?}", values);
}</code></pre>
11 months ago
<p>具体解释在代码注释中,就不再赘述,不过有两点需要注意的是:</p>
<ul>
<li><code>.iter()</code> 方法实现的迭代器,调用 <code>next</code> 方法返回的类型是 <code>Some(&amp;T)</code></li>
<li><code>.iter_mut()</code> 方法实现的迭代器,调用 <code>next</code> 方法返回的类型是 <code>Some(&amp;mut T)</code>,因此在 <code>if let Some(v) = values_iter_mut.next()</code> 中,<code>v</code> 的类型是 <code>&amp;mut i32</code>,最终我们可以通过 <code>*v = 0</code> 的方式修改其值</li>
</ul>
<h4 id="iterator-和-intoiterator-的区别"><a class="header" href="#iterator-和-intoiterator-的区别">Iterator 和 IntoIterator 的区别</a></h4>
<p>这两个其实还蛮容易搞混的,但我们只需要记住,<code>Iterator</code> 就是迭代器特征,只有实现了它才能称为迭代器,才能调用 <code>next</code></p>
<p><code>IntoIterator</code> 强调的是某一个类型如果实现了该特征,它可以通过 <code>into_iter</code><code>iter</code> 等方法变成一个迭代器。</p>
<h2 id="消费者与适配器"><a class="header" href="#消费者与适配器">消费者与适配器</a></h2>
<p>消费者是迭代器上的方法,它会消费掉迭代器中的元素,然后返回其类型的值,这些消费者都有一个共同的特点:在它们的定义中,都依赖 <code>next</code> 方法来消费元素,因此这也是为什么迭代器要实现 <code>Iterator</code> 特征,而该特征必须要实现 <code>next</code> 方法的原因。</p>
<h4 id="消费者适配器"><a class="header" href="#消费者适配器">消费者适配器</a></h4>
<p>只要迭代器上的某个方法 <code>A</code> 在其内部调用了 <code>next</code> 方法,那么 <code>A</code> 就被称为<strong>消费者适配器</strong>:因为 <code>next</code> 方法会消耗掉迭代器上的元素,所以方法 <code>A</code> 的调用也会消耗掉迭代器上的元素。</p>
11 months ago
<p>其中一个例子是 <code>sum</code> 方法,它会拿走迭代器的所有权,然后通过不断调用 <code>next</code> 方法对里面的元素进行求和:</p>
<pre class="playground"><code class="language-rust edition2021">fn main() {
11 months ago
let v1 = vec![1, 2, 3];
let v1_iter = v1.iter();
let total: i32 = v1_iter.sum();
assert_eq!(total, 6);
// v1_iter 是借用了 v1因此 v1 可以照常使用
println!("{:?}",v1);
// 以下代码会报错,因为 `sum` 拿到了迭代器 `v1_iter` 的所有权
// println!("{:?}",v1_iter);
}</code></pre>
11 months ago
<p>如代码注释中所说明的:在使用 <code>sum</code> 方法后,我们将无法再使用 <code>v1_iter</code>,因为 <code>sum</code> 拿走了该迭代器的所有权:</p>
<pre class="playground"><code class="language-rust edition2021"><span class="boring">#![allow(unused)]
11 months ago
</span><span class="boring">fn main() {
</span>fn sum&lt;S&gt;(self) -&gt; S
where
Self: Sized,
S: Sum&lt;Self::Item&gt;,
{
Sum::sum(self)
}
<span class="boring">}</span></code></pre>
11 months ago
<p><code>sum</code> 源码中也可以清晰看出,<code>self</code> 类型的方法参数拿走了所有权。</p>
<h4 id="迭代器适配器"><a class="header" href="#迭代器适配器">迭代器适配器</a></h4>
<p>既然消费者适配器是消费掉迭代器,然后返回一个值。那么迭代器适配器,顾名思义,会返回一个新的迭代器,这是实现链式方法调用的关键:<code>v.iter().map().filter()...</code></p>
<p>与消费者适配器不同,迭代器适配器是惰性的,意味着你<strong>需要一个消费者适配器来收尾,最终将迭代器转换成一个具体的值</strong></p>
<pre class="playground"><code class="language-rust edition2021"><span class="boring">#![allow(unused)]
11 months ago
</span><span class="boring">fn main() {
</span>let v1: Vec&lt;i32&gt; = vec![1, 2, 3];
v1.iter().map(|x| x + 1);
<span class="boring">}</span></code></pre>
11 months ago
<p>运行后输出:</p>
<pre><code class="language-console">warning: unused `Map` that must be used
--&gt; src/main.rs:4:5
|
4 | v1.iter().map(|x| x + 1);
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `#[warn(unused_must_use)]` on by default
= note: iterators are lazy and do nothing unless consumed // 迭代器 map 是惰性的,这里不产生任何效果
</code></pre>
<p>如上述中文注释所说,这里的 <code>map</code> 方法是一个迭代者适配器,它是惰性的,不产生任何行为,因此我们还需要一个消费者适配器进行收尾:</p>
<pre class="playground"><code class="language-rust edition2021"><span class="boring">#![allow(unused)]
11 months ago
</span><span class="boring">fn main() {
</span>let v1: Vec&lt;i32&gt; = vec![1, 2, 3];
let v2: Vec&lt;_&gt; = v1.iter().map(|x| x + 1).collect();
assert_eq!(v2, vec![2, 3, 4]);
<span class="boring">}</span></code></pre>
11 months ago
<h4 id="collect"><a class="header" href="#collect">collect</a></h4>
<p>上面代码中,使用了 <code>collect</code> 方法,该方法就是一个消费者适配器,使用它可以将一个迭代器中的元素收集到指定类型中,这里我们为 <code>v2</code> 标注了 <code>Vec&lt;_&gt;</code> 类型,就是为了告诉 <code>collect</code>:请把迭代器中的元素消费掉,然后把值收集成 <code>Vec&lt;_&gt;</code> 类型,至于为何使用 <code>_</code>,因为编译器会帮我们自动推导。</p>
<p>为何 <code>collect</code> 在消费时要指定类型?是因为该方法其实很强大,可以收集成多种不同的集合类型,<code>Vec&lt;T&gt;</code> 仅仅是其中之一,因此我们必须显式的告诉编译器我们想要收集成的集合类型。</p>
<p>还有一点值得注意,<code>map</code> 会对迭代器中的每一个值进行一系列操作,然后把该值转换成另外一个新值,该操作是通过闭包 <code>|x| x + 1</code> 来完成:最终迭代器中的每个值都增加了 <code>1</code>,从 <code>[1, 2, 3]</code> 变为 <code>[2, 3, 4]</code></p>
<p>再来看看如何使用 <code>collect</code> 收集成 <code>HashMap</code> 集合:</p>
<pre class="playground"><code class="language-rust edition2021">use std::collections::HashMap;
11 months ago
fn main() {
let names = ["sunface", "sunfei"];
let ages = [18, 18];
let folks: HashMap&lt;_, _&gt; = names.into_iter().zip(ages.into_iter()).collect();
println!("{:?}",folks);
}</code></pre>
11 months ago
<p><code>zip</code> 是一个迭代器适配器,它的作用就是将两个迭代器的内容压缩到一起,形成 <code>Iterator&lt;Item=(ValueFromA, ValueFromB)&gt;</code> 这样的新的迭代器,在此处就是形如 <code>[(name1, age1), (name2, age2)]</code> 的迭代器。</p>
<p>然后再通过 <code>collect</code> 将新迭代器中<code>(K, V)</code> 形式的值收集成 <code>HashMap&lt;K, V&gt;</code>,同样的,这里必须显式声明类型,然后 <code>HashMap</code> 内部的 <code>KV</code> 类型可以交给编译器去推导,最终编译器会推导出 <code>HashMap&lt;&amp;str, i32&gt;</code>,完全正确!</p>
<h4 id="闭包作为适配器参数"><a class="header" href="#闭包作为适配器参数">闭包作为适配器参数</a></h4>
<p>之前的 <code>map</code> 方法中,我们使用闭包来作为迭代器适配器的参数,它最大的好处不仅在于可以就地实现迭代器中元素的处理,还在于可以捕获环境值:</p>
<pre class="playground"><code class="language-rust edition2021"><span class="boring">#![allow(unused)]
11 months ago
</span><span class="boring">fn main() {
</span>struct Shoe {
size: u32,
style: String,
}
fn shoes_in_size(shoes: Vec&lt;Shoe&gt;, shoe_size: u32) -&gt; Vec&lt;Shoe&gt; {
shoes.into_iter().filter(|s| s.size == shoe_size).collect()
}
<span class="boring">}</span></code></pre>
11 months ago
<p><code>filter</code> 是迭代器适配器,用于对迭代器中的每个值进行过滤。 它使用闭包作为参数,该闭包的参数 <code>s</code> 是来自迭代器中的值,然后使用 <code>s</code> 跟外部环境中的 <code>shoe_size</code> 进行比较,若相等,则在迭代器中保留 <code>s</code> 值,若不相等,则从迭代器中剔除 <code>s</code> 值,最终通过 <code>collect</code> 收集为 <code>Vec&lt;Shoe&gt;</code> 类型。</p>
<h2 id="实现-iterator-特征"><a class="header" href="#实现-iterator-特征">实现 Iterator 特征</a></h2>
<p>之前的内容我们一直基于数组来创建迭代器,实际上,不仅仅是数组,基于其它集合类型一样可以创建迭代器,例如 <code>HashMap</code>。 你也可以创建自己的迭代器 —— 只要为自定义类型实现 <code>Iterator</code> 特征即可。</p>
<p>首先,创建一个计数器:</p>
<pre class="playground"><code class="language-rust edition2021"><span class="boring">#![allow(unused)]
11 months ago
</span><span class="boring">fn main() {
</span>struct Counter {
count: u32,
}
impl Counter {
fn new() -&gt; Counter {
Counter { count: 0 }
}
}
<span class="boring">}</span></code></pre>
11 months ago
<p>我们为计数器 <code>Counter</code> 实现了一个关联函数 <code>new</code>,用于创建新的计数器实例。下面我们继续为计数器实现 <code>Iterator</code> 特征:</p>
<pre class="playground"><code class="language-rust edition2021"><span class="boring">#![allow(unused)]
11 months ago
</span><span class="boring">fn main() {
</span>impl Iterator for Counter {
type Item = u32;
fn next(&amp;mut self) -&gt; Option&lt;Self::Item&gt; {
if self.count &lt; 5 {
self.count += 1;
Some(self.count)
} else {
None
}
}
}
<span class="boring">}</span></code></pre>
11 months ago
<p>首先,将该特征的关联类型设置为 <code>u32</code>,由于我们的计数器保存的 <code>count</code> 字段就是 <code>u32</code> 类型, 因此在 <code>next</code> 方法中,最后返回的是实际上是 <code>Option&lt;u32&gt;</code> 类型。</p>
<p>每次调用 <code>next</code> 方法,都会让计数器的值加一,然后返回最新的计数值,一旦计数大于 5就返回 <code>None</code></p>
<p>最后,使用我们新建的 <code>Counter</code> 进行迭代:</p>
<pre class="playground"><code class="language-rust edition2021"><span class="boring">#![allow(unused)]
11 months ago
</span><span class="boring">fn main() {
</span> let mut counter = Counter::new();
assert_eq!(counter.next(), Some(1));
assert_eq!(counter.next(), Some(2));
assert_eq!(counter.next(), Some(3));
assert_eq!(counter.next(), Some(4));
assert_eq!(counter.next(), Some(5));
assert_eq!(counter.next(), None);
<span class="boring">}</span></code></pre>
11 months ago
<h4 id="实现-iterator-特征的其它方法"><a class="header" href="#实现-iterator-特征的其它方法">实现 Iterator 特征的其它方法</a></h4>
<p>可以看出,实现自己的迭代器非常简单,但是 <code>Iterator</code> 特征中,不仅仅是只有 <code>next</code> 一个方法,那为什么我们只需要实现它呢?因为其它方法都具有<a href="https://course.rs/basic/trait/trait.html#默认实现">默认实现</a>,所以无需像 <code>next</code> 这样手动去实现,而且这些默认实现的方法其实都是基于 <code>next</code> 方法实现的。</p>
11 months ago
<p>下面的代码演示了部分方法的使用:</p>
<pre class="playground"><code class="language-rust edition2021"><span class="boring">#![allow(unused)]
11 months ago
</span><span class="boring">fn main() {
</span>let sum: u32 = Counter::new()
.zip(Counter::new().skip(1))
.map(|(a, b)| a * b)
.filter(|x| x % 3 == 0)
.sum();
assert_eq!(18, sum);
<span class="boring">}</span></code></pre>
11 months ago
<p>其中 <code>zip</code><code>map</code><code>filter</code> 是迭代器适配器:</p>
<ul>
<li><code>zip</code> 把两个迭代器合并成一个迭代器,新迭代器中,每个元素都是一个元组,由之前两个迭代器的元素组成。例如将<strong>形如</strong> <code>[1, 2, 3, 4, 5]</code><code>[2, 3, 4, 5]</code> 的迭代器合并后,新的迭代器形如 <code>[(1, 2),(2, 3),(3, 4),(4, 5)]</code></li>
<li><code>map</code> 是将迭代器中的值经过映射后,转换成新的值<code>[2, 6, 12, 20]</code></li>
<li><code>filter</code> 对迭代器中的元素进行过滤,若闭包返回 <code>true</code> 则保留元素,反之剔除。过滤后的迭代器形如<code>[6, 12]</code></li>
11 months ago
</ul>
<p><code>sum</code> 是消费者适配器,对迭代器中的所有元素求和,最终返回一个 <code>u32</code><code>18</code></p>
<h5 id="enumerate"><a class="header" href="#enumerate">enumerate</a></h5>
<p>在之前的流程控制章节,针对 <code>for</code> 循环,我们提供了一种方法可以获取迭代时的索引:</p>
<pre class="playground"><code class="language-rust edition2021"><span class="boring">#![allow(unused)]
11 months ago
</span><span class="boring">fn main() {
</span>let v = vec![1u64, 2, 3, 4, 5, 6];
for (i,v) in v.iter().enumerate() {
println!("第{}个值是{}",i,v)
}
<span class="boring">}</span></code></pre>
11 months ago
<p>相信当时,很多读者还是很迷茫的,不知道为什么要这么复杂才能获取到索引,学习本章节后,相信你有了全新的理解,首先 <code>v.iter()</code> 创建迭代器,其次
调用 <code>Iterator</code> 特征上的方法 <code>enumerate</code>,该方法产生一个新的迭代器,其中每个元素均是元组 <code>(索引,值)</code></p>
<p>因为 <code>enumerate</code> 是迭代器适配器,因此我们可以对它返回的迭代器调用其它 <code>Iterator</code> 特征方法:</p>
<pre class="playground"><code class="language-rust edition2021"><span class="boring">#![allow(unused)]
11 months ago
</span><span class="boring">fn main() {
</span>let v = vec![1u64, 2, 3, 4, 5, 6];
let val = v.iter()
.enumerate()
// 每两个元素剔除一个
// [1, 3, 5]
.filter(|&amp;(idx, _)| idx % 2 == 0)
.map(|(_, val)| val)
// 累加 1+3+5 = 9
.fold(0u64, |sum, acm| sum + acm);
println!("{}", val);
<span class="boring">}</span></code></pre>
11 months ago
<h2 id="迭代器的性能"><a class="header" href="#迭代器的性能">迭代器的性能</a></h2>
<p>前面提到,要完成集合遍历,既可以使用 <code>for</code> 循环也可以使用迭代器,那么二者之间该怎么选择呢,性能有多大差距呢?</p>
<p>理论分析不会有结果,直接测试最为靠谱:</p>
<pre class="playground"><code class="language-rust edition2021"><span class="boring">#![allow(unused)]
11 months ago
</span>#![feature(test)]
<span class="boring">fn main() {
</span>extern crate rand;
extern crate test;
fn sum_for(x: &amp;[f64]) -&gt; f64 {
let mut result: f64 = 0.0;
for i in 0..x.len() {
result += x[i];
}
result
}
fn sum_iter(x: &amp;[f64]) -&gt; f64 {
x.iter().sum::&lt;f64&gt;()
}
#[cfg(test)]
mod bench {
use test::Bencher;
use rand::{Rng,thread_rng};
use super::*;
const LEN: usize = 1024*1024;
fn rand_array(cnt: u32) -&gt; Vec&lt;f64&gt; {
let mut rng = thread_rng();
(0..cnt).map(|_| rng.gen::&lt;f64&gt;()).collect()
}
#[bench]
fn bench_for(b: &amp;mut Bencher) {
let samples = rand_array(LEN as u32);
b.iter(|| {
sum_for(&amp;samples)
})
}
#[bench]
fn bench_iter(b: &amp;mut Bencher) {
let samples = rand_array(LEN as u32);
b.iter(|| {
sum_iter(&amp;samples)
})
}
}
<span class="boring">}</span></code></pre>
11 months ago
<p>上面的代码对比了 <code>for</code> 循环和迭代器 <code>iterator</code> 完成同样的求和任务的性能对比,可以看到迭代器还要更快一点。</p>
<pre><code class="language-console">test bench::bench_for ... bench: 998,331 ns/iter (+/- 36,250)
test bench::bench_iter ... bench: 983,858 ns/iter (+/- 44,673)
</code></pre>
<p>迭代器是 Rust 的 <strong>零成本抽象</strong>zero-cost abstractions之一意味着抽象并不会引入运行时开销这与 <code>Bjarne Stroustrup</code>C++ 的设计和实现者)在 <code>Foundations of C++2012</code> 中所定义的 <strong>零开销</strong>zero-overhead如出一辙</p>
<blockquote>
<p>In general, C++ implementations obey the zero-overhead principle: What you dont use, you dont pay for.
And further: What you do use, you couldnt hand code any better.</p>
<p>一般来说C++的实现遵循零开销原则:没有使用时,你不必为其买单。
更进一步说,需要使用时,你也无法写出更优的代码了。
(翻译一下:用就完事了)</p>
</blockquote>
<p>总之,迭代器是 Rust 受函数式语言启发而提供的高级语言特性可以写出更加简洁、逻辑清晰的代码。编译器还可以通过循环展开Unrolling、向量化、消除边界检查等优化手段使得迭代器和 <code>for</code> 循环都有极为高效的执行效率。</p>
<p>所以请放心大胆的使用迭代器,在获得更高的表达力的同时,也不会导致运行时的损失,何乐而不为呢!</p>
<h2 id="学习其它方法"><a class="header" href="#学习其它方法">学习其它方法</a></h2>
<p>迭代器用的好不好,就在于你是否掌握了它的常用方法,且能活学活用,因此多多看看<a href="https://doc.rust-lang.org/std/iter/trait.Iterator.html">标准库</a>是有好处的,只有知道有什么方法,在需要的时候你才能知道该用什么,就和算法学习一样。</p>
<p>同时,本书在后续章节还提供了对迭代器常用方法的<a href="https://course.rs/std/iterator">深入讲解</a>,方便大家学习和查阅。</p>
</main>
<nav class="nav-wrapper" aria-label="Page navigation">
<!-- Mobile navigation buttons -->
<a rel="prev" href="../../advance/functional-programing/closure.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left">
<span class=fa-svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M41.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 256 246.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160z"/></svg></span>
11 months ago
</a>
<a rel="next prefetch" href="../../advance/into-types/intro.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right">
<span class=fa-svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M278.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-160 160c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L210.7 256 73.4 118.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l160 160z"/></svg></span>
11 months ago
</a>
<div style="clear: both"></div>
</nav>
</div>
</div>
<nav class="nav-wide-wrapper" aria-label="Page navigation">
<a rel="prev" href="../../advance/functional-programing/closure.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left">
<span class=fa-svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M41.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 256 246.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160z"/></svg></span>
11 months ago
</a>
<a rel="next prefetch" href="../../advance/into-types/intro.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right">
<span class=fa-svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M278.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-160 160c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L210.7 256 73.4 118.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l160 160z"/></svg></span>
11 months ago
</a>
</nav>
</div>
<template id=fa-eye><span class=fa-svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M288 32c-80.8 0-145.5 36.8-192.6 80.6C48.6 156 17.3 208 2.5 243.7c-3.3 7.9-3.3 16.7 0 24.6C17.3 304 48.6 356 95.4 399.4C142.5 443.2 207.2 480 288 480s145.5-36.8 192.6-80.6c46.8-43.5 78.1-95.4 93-131.1c3.3-7.9 3.3-16.7 0-24.6c-14.9-35.7-46.2-87.7-93-131.1C433.5 68.8 368.8 32 288 32zM432 256c0 79.5-64.5 144-144 144s-144-64.5-144-144s64.5-144 144-144s144 64.5 144 144zM288 192c0 35.3-28.7 64-64 64c-11.5 0-22.3-3-31.6-8.4c-.2 2.8-.4 5.5-.4 8.4c0 53 43 96 96 96s96-43 96-96s-43-96-96-96c-2.8 0-5.6 .1-8.4 .4c5.3 9.3 8.4 20.1 8.4 31.6z"/></svg></span></template>
<template id=fa-eye-slash><span class=fa-svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L525.6 386.7c39.6-40.6 66.4-86.1 79.9-118.4c3.3-7.9 3.3-16.7 0-24.6c-14.9-35.7-46.2-87.7-93-131.1C465.5 68.8 400.8 32 320 32c-68.2 0-125 26.3-169.3 60.8L38.8 5.1zM223.1 149.5C248.6 126.2 282.7 112 320 112c79.5 0 144 64.5 144 144c0 24.9-6.3 48.3-17.4 68.7L408 294.5c5.2-11.8 8-24.8 8-38.5c0-53-43-96-96-96c-2.8 0-5.6 .1-8.4 .4c5.3 9.3 8.4 20.1 8.4 31.6c0 10.2-2.4 19.8-6.6 28.3l-90.3-70.8zm223.1 298L373 389.9c-16.4 6.5-34.3 10.1-53 10.1c-79.5 0-144-64.5-144-144c0-6.9 .5-13.6 1.4-20.2L83.1 161.5C60.3 191.2 44 220.8 34.5 243.7c-3.3 7.9-3.3 16.7 0 24.6c14.9 35.7 46.2 87.7 93 131.1C174.5 443.2 239.2 480 320 480c47.8 0 89.9-12.9 126.2-32.5z"/></svg></span></template>
<template id=fa-copy><span class=fa-svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M502.6 70.63l-61.25-61.25C435.4 3.371 427.2 0 418.7 0H255.1c-35.35 0-64 28.66-64 64l.0195 256C192 355.4 220.7 384 256 384h192c35.2 0 64-28.8 64-64V93.25C512 84.77 508.6 76.63 502.6 70.63zM464 320c0 8.836-7.164 16-16 16H255.1c-8.838 0-16-7.164-16-16L239.1 64.13c0-8.836 7.164-16 16-16h128L384 96c0 17.67 14.33 32 32 32h47.1V320zM272 448c0 8.836-7.164 16-16 16H63.1c-8.838 0-16-7.164-16-16L47.98 192.1c0-8.836 7.164-16 16-16H160V128H63.99c-35.35 0-64 28.65-64 64l.0098 256C.002 483.3 28.66 512 64 512h192c35.2 0 64-28.8 64-64v-32h-47.1L272 448z"/></svg></span></template>
<template id=fa-play><span class=fa-svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M73 39c-14.8-9.1-33.4-9.4-48.5-.9S0 62.6 0 80V432c0 17.4 9.4 33.4 24.5 41.9s33.7 8.1 48.5-.9L361 297c14.3-8.7 23-24.2 23-41s-8.7-32.2-23-41L73 39z"/></svg></span></template>
<template id=fa-clock-rotate-left><span class=fa-svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M75 75L41 41C25.9 25.9 0 36.6 0 57.9V168c0 13.3 10.7 24 24 24H134.1c21.4 0 32.1-25.9 17-41l-30.8-30.8C155 85.5 203 64 256 64c106 0 192 86 192 192s-86 192-192 192c-40.8 0-78.6-12.7-109.7-34.4c-14.5-10.1-34.4-6.6-44.6 7.9s-6.6 34.4 7.9 44.6C151.2 495 201.7 512 256 512c141.4 0 256-114.6 256-256S397.4 0 256 0C185.3 0 121.3 28.7 75 75zm181 53c-13.3 0-24 10.7-24 24V256c0 6.4 2.5 12.5 7 17l72 72c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-65-65V152c0-13.3-10.7-24-24-24z"/></svg></span></template>
11 months ago
<script>
window.playground_copyable = true;
</script>
<script src="../../ace-2a3cd908.js"></script>
<script src="../../mode-rust-2c9d5c9a.js"></script>
<script src="../../editor-16ca416c.js"></script>
<script src="../../theme-dawn-4493f9c8.js"></script>
<script src="../../theme-tomorrow_night-9dbe62a9.js"></script>
11 months ago
<script src="../../elasticlunr-ef4e11c1.min.js"></script>
<script src="../../mark-09e88c2c.min.js"></script>
<script src="../../searcher-c2a407aa.js"></script>
11 months ago
<script src="../../clipboard-1626706a.min.js"></script>
<script src="../../highlight-abc7f01d.js"></script>
<script src="../../book-a0b12cfe.js"></script>
11 months ago
<!-- Custom JS scripts -->
<script src="../../assets/custom-7d8ae1df.js"></script>
<script src="../../assets/bigPicture-be03f9c8.js"></script>
11 months ago
</div>
</body>
</html>