検索
Results of 1 - 10 of about 193 for 例 (0.111 sec.)
- エラー型を定義する - Rust By Example 日本語版 13059
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
9.2.5. クロージャを返す関数 9.2.6. stdにおける使用例 ❱ 9.2.6.1. Iterator::any 9.2.6.2. Iterator::find 9...
ーメッセージを提供する 他の型との比較を楽にする 良い例: Err(EmptyVec) 悪い例: Err("Please use a vector wi...
".to_owned()) エラーについての情報を保持できる 良い例: Err(BadChar(c, position)) 悪い例: Err("+ cannot b...
- https://man.plustar.jp/rust/example/error/multiple_error_types/define_error_type... - [similar]
- Conventions - Rust By Example 日本語版 11842
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
9.2.5. クロージャを返す関数 9.2.6. stdにおける使用例 ❱ 9.2.6.1. Iterator::any 9.2.6.2. Iterator::find 9...
ult) Rust Coal Navy Ayu Rust By Example 日本語版 慣例 前の章ではこのようなディレクトリ階層がありました。...
- https://man.plustar.jp/rust/example/cargo/conventions.html - [similar]
- エラーハンドリング - Rust By Example 日本語版 10625
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
9.2.5. クロージャを返す関数 9.2.6. stdにおける使用例 ❱ 9.2.6.1. Iterator::any 9.2.6.2. Iterator::find 9...
ングとは失敗の起きる可能性を扱うプロセスのことです。例えば、ファイルを読み込むのに失敗した際、その 誤った...
なエラーに対して効果的です。プロトタイプにも便利で、例えば未実装の関数を扱う時などに有効ですが、このような...
値が無いことがエラーの条件とならない場合に有効です。例えば親ディレクトリ( / や C: はそれを持ちません)など...
- https://man.plustar.jp/rust/example/error.html - [similar]
- 標準ライブラリの型 - Rust By Example 日本語版 8811
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
9.2.5. クロージャを返す関数 9.2.6. stdにおける使用例 ❱ 9.2.6.1. Iterator::any 9.2.6.2. Iterator::find 9...
ータ型を劇的に拡張するカスタム型を数多く提供します。例えば以下です。 拡張可能な文字列である String 。例えば...
- https://man.plustar.jp/rust/example/std.html - [similar]
- Option と unwrap - Rust By Example 日本語版 7594
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
9.2.5. クロージャを返す関数 9.2.6. stdにおける使用例 ❱ 9.2.6.1. Iterator::any 9.2.6.2. Iterator::find 9...
yu Rust By Example 日本語版 Option と unwrap 以前の例では、甘いレモネードを飲んだ際に panic を呼び出すこと...
やすいエラーメッセージを出力するのに役立ちます。次の例では、結果をより明示的に、可能ならいつでも panic でき...
- https://man.plustar.jp/rust/example/error/option_unwrap.html - [similar]
- Resultのmap - Rust By Example 日本語版 7594
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
9.2.5. クロージャを返す関数 9.2.6. stdにおける使用例 ❱ 9.2.6.1. Iterator::any 9.2.6.2. Iterator::find 9...
avy Ayu Rust By Example 日本語版 Result の map 前の例で見た multiply でのパニックは、コードを強固にするた...
eIntError というものであることが分かります。 以下の例では、単純な match 文が全体として扱いづらいコードにし...
- https://man.plustar.jp/rust/example/error/result/result_map.html - [similar]
- stdにおける使用例 - Rust By Example 日本語版 7594
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
9.2.5. クロージャを返す関数 9.2.6. stdにおける使用例 ❱ 9.2.6.1. Iterator::any 9.2.6.2. Iterator::find 9...
Navy Ayu Rust By Example 日本語版 std における使用例 この節では std ライブラリを用いて、クロージャの利用...
ワード: 関数 , Result , 使用 , Rust , By , Example , 例 , エラー , Option , テストケース...
- https://man.plustar.jp/rust/example/fn/closures/closure_examples.html - [similar]
- ?の導入 - Rust By Example 日本語版 6573
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
9.2.5. クロージャを返す関数 9.2.6. stdにおける使用例 ❱ 9.2.6.1. Iterator::any 9.2.6.2. Iterator::find 9...
う点で unwrap と同等です。コンビネータを使った以前の例をどれだけ簡潔に書けるか見てみましょう。 use std::nu...
では try! に出会うこともあります。 try! を使って前の例と同じ multiply 関数を実装すると、以下のようになるで...
rgo.toml` file, to "2015". // Cargoを使いながらこの例をエラーなくコンパイル、及び実行する場合、 // `Cargo...
- https://man.plustar.jp/rust/example/error/result/enter_question_mark.html - [similar]
- ジェネリック境界 - Rust By Example 日本語版 6573
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
9.2.5. クロージャを返す関数 9.2.6. stdにおける使用例 ❱ 9.2.6.1. Iterator::any 9.2.6.2. Iterator::find 9...
に境界( bound )を設ける必要があることがよくあります。例えば、以下の例では、引数の Display トレイトを用いてプ...
アクセスすることができるようになる点です。以下がその例です。 // A trait which implements the print marker:...
- https://man.plustar.jp/rust/example/generics/bounds.html - [similar]
- key型の変種 - Rust By Example 日本語版 6573
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
9.2.5. クロージャを返す関数 9.2.6. stdにおける使用例 ❱ 9.2.6.1. Iterator::any 9.2.6.2. Iterator::find 9...
ならば、なんでも HashMap のキーになることができます。例えば以下です。 bool (キーになりうる値が2つしかないの...
実装している場合、必ず同じトレイトを実装しています。例えば、 Vec<T> は T が Hash を実装している場合、 Hash...
細については触れません。 struct を HashMap で扱う際の例として、とてもシンプルなユーザーログインシステムを作...
- https://man.plustar.jp/rust/example/std/hash/alt_key_types.html - [similar]