Skip to content

Commit eea281c

Browse files
committed
ci: generate pages at 0a045cb [ci skip]
1 parent 0a045cb commit eea281c

File tree

5 files changed

+12
-40
lines changed

5 files changed

+12
-40
lines changed

docs/ch19-00-advanced-features.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -201,13 +201,15 @@ <h1 id="高度な機能"><a class="header" href="#高度な機能">高度な機
201201
* Advanced types: more about the newtype pattern, type aliases, the never type,
202202
and dynamically sized types
203203
* Advanced functions and closures: function pointers and returning closures
204+
* Macros: ways to define code that defines more code at compile time
204205
-->
205206
<ul>
206207
<li>Unsafe Rust: Rustの保証の一部を抜けてその保証を手動で保持する責任を負う方法</li>
207208
<li>高度なライフタイム: 複雑なライフタイム状況の記法</li>
208209
<li>高度なトレイト: 関連型、デフォルト型引数、フルパス記法、スーパートレイト、トレイトに関連するニュータイプパターン</li>
209210
<li>高度な型: ニュータイプパターンについてもっと、型エイリアス、never型、動的サイズ決定型</li>
210211
<li>高度な関数とクロージャ: 関数ポインタとクロージャの返却</li>
212+
<li>マクロ: コンパイル時に、より多くのコードを定義するコードを定義する方法</li>
211213
</ul>
212214
<!--
213215
It’s a panoply of Rust features with something for everyone! Let’s dive in!

docs/ch19-05-advanced-functions-and-closures.html

Lines changed: 2 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -371,25 +371,9 @@ <h3 id="クロージャを返却する"><a class="header" href="#クロージャ
371371
<p>このコードは、問題なくコンパイルできます。トレイトオブジェクトについて詳しくは、
372372
第17章の「トレイトオブジェクトで異なる型の値を許容する」節を参照してください。</p>
373373
<!--
374-
## Summary
374+
Next, let’s look at macros!
375375
-->
376-
<h2 id="まとめ"><a class="header" href="#まとめ">まとめ</a></h2>
377-
<!--
378-
Whew! Now you have some features of Rust in your toolbox that you won’t use
379-
often, but you’ll know they’re available in very particular circumstances.
380-
We’ve introduced several complex topics so that when you encounter them in
381-
error message suggestions or in other peoples’ code, you’ll be able to
382-
recognize these concepts and syntax. Use this chapter as a reference to guide
383-
you to solutions.
384-
-->
385-
<p>ふう!もう道具箱に頻繁には使用しないRustの機能の一部がありますが、非常に限定された状況で利用可能だと知るでしょう。
386-
エラーメッセージや他の方のコードで遭遇した際に、これらの概念や記法を認識できるように、
387-
複雑な話題をいくつか紹介しました。この章は、解決策へ導く参考文献としてご活用ください。</p>
388-
<!--
389-
Next, we’ll put everything we’ve discussed throughout the book into practice
390-
and do one more project!
391-
-->
392-
<p>次は、本を通して議論してきた全てを実践に配備し、もう1つプロジェクトを<ruby><rp>(</rp><rt>こな</rt><rp>)</rp></ruby>します!</p>
376+
<p>次は、マクロを見てみましょう!</p>
393377

394378
</main>
395379

docs/print.html

Lines changed: 6 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -35675,13 +35675,15 @@ <h1 id="高度な機能"><a class="header" href="#高度な機能">高度な機
3567535675
* Advanced types: more about the newtype pattern, type aliases, the never type,
3567635676
and dynamically sized types
3567735677
* Advanced functions and closures: function pointers and returning closures
35678+
* Macros: ways to define code that defines more code at compile time
3567835679
-->
3567935680
<ul>
3568035681
<li>Unsafe Rust: Rustの保証の一部を抜けてその保証を手動で保持する責任を負う方法</li>
3568135682
<li>高度なライフタイム: 複雑なライフタイム状況の記法</li>
3568235683
<li>高度なトレイト: 関連型、デフォルト型引数、フルパス記法、スーパートレイト、トレイトに関連するニュータイプパターン</li>
3568335684
<li>高度な型: ニュータイプパターンについてもっと、型エイリアス、never型、動的サイズ決定型</li>
3568435685
<li>高度な関数とクロージャ: 関数ポインタとクロージャの返却</li>
35686+
<li>マクロ: コンパイル時に、より多くのコードを定義するコードを定義する方法</li>
3568535687
</ul>
3568635688
<!--
3568735689
It’s a panoply of Rust features with something for everyone! Let’s dive in!
@@ -38165,25 +38167,9 @@ <h3 id="クロージャを返却する"><a class="header" href="#クロージャ
3816538167
<p>このコードは、問題なくコンパイルできます。トレイトオブジェクトについて詳しくは、
3816638168
第17章の「トレイトオブジェクトで異なる型の値を許容する」節を参照してください。</p>
3816738169
<!--
38168-
## Summary
38169-
-->
38170-
<h2 id="まとめ-18"><a class="header" href="#まとめ-18">まとめ</a></h2>
38171-
<!--
38172-
Whew! Now you have some features of Rust in your toolbox that you won’t use
38173-
often, but you’ll know they’re available in very particular circumstances.
38174-
We’ve introduced several complex topics so that when you encounter them in
38175-
error message suggestions or in other peoples’ code, you’ll be able to
38176-
recognize these concepts and syntax. Use this chapter as a reference to guide
38177-
you to solutions.
38170+
Next, let’s look at macros!
3817838171
-->
38179-
<p>ふう!もう道具箱に頻繁には使用しないRustの機能の一部がありますが、非常に限定された状況で利用可能だと知るでしょう。
38180-
エラーメッセージや他の方のコードで遭遇した際に、これらの概念や記法を認識できるように、
38181-
複雑な話題をいくつか紹介しました。この章は、解決策へ導く参考文献としてご活用ください。</p>
38182-
<!--
38183-
Next, we’ll put everything we’ve discussed throughout the book into practice
38184-
and do one more project!
38185-
-->
38186-
<p>次は、本を通して議論してきた全てを実践に配備し、もう1つプロジェクトを<ruby>熟<rp>(</rp><rt>こな</rt><rp>)</rp></ruby>します!</p>
38172+
<p>次は、マクロを見てみましょう!</p>
3818738173
<div id="chapter_begin" style="break-before: page; page-break-before: always;"></div><!--
3818838174
## Macros
3818938175
-->
@@ -39046,7 +39032,7 @@ <h3 id="関数風マクロ"><a class="header" href="#関数風マクロ">関数
3904639032
<!--
3904739033
## Summary
3904839034
-->
39049-
<h2 id="まとめ-19"><a class="header" href="#まとめ-19">まとめ</a></h2>
39035+
<h2 id="まとめ-18"><a class="header" href="#まとめ-18">まとめ</a></h2>
3905039036
<!--
3905139037
Whew! Now you have some Rust features in your toolbox that you won’t use often,
3905239038
but you’ll know they’re available in very particular circumstances. We’ve
@@ -42338,7 +42324,7 @@ <h3 id="スレッドに仕事をリッスンするのを止めるよう通知す
4233842324
<!--
4233942325
## Summary
4234042326
-->
42341-
<h2 id="まとめ-20"><a class="header" href="#まとめ-20">まとめ</a></h2>
42327+
<h2 id="まとめ-19"><a class="header" href="#まとめ-19">まとめ</a></h2>
4234242328
<!--
4234342329
Well done! You’ve made it to the end of the book! We want to thank you for
4234442330
joining us on this tour of Rust. You’re now ready to implement your own Rust

docs/searchindex.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/searchindex.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)