検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 193 for Don (0.026 sec.)
文字列 - Rust By Example 日本語版 12679
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... 17.1.2. オーバーロード 17.1.3. 繰り返し 17.2. DRY (Don't Repeat Yourself) 17.3. Domain Specific Languages ... fluous) // A reference to a string allocated in read only memory // (以下の例では型を明示していますが、こ ... れらは必須ではありません。) // read only memory上に割り当てられた文字列への参照 let pang ... character to your string, even unprintable ones and ones that you don't know how to type. If you want a ...
https://man.plustar.jp/rust/example/std/str.html - [similar]
DRY (Don't Repeat Yourself) - Rust By Example 日本語版 11755
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... 17.1.2. オーバーロード 17.1.3. 繰り返し 17.2. DRY (Don't Repeat Yourself) 17.3. Domain Specific Languages ... ) Rust Coal Navy Ayu Rust By Example 日本語版 DRY (Don't Repeat Yourself) マクロは関数やテストなどにおいて ... 関連キーワード: assign , 関数 , mul , func , op , Don , Yourself , Repeat , iter , Vec ...
https://man.plustar.jp/rust/example/macros/dry.html - [similar]
Combinators: and_then - Rust By Example 日本語版 9452
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... 17.1.2. オーバーロード 17.1.3. 繰り返し 17.2. DRY (Don't Repeat Yourself) 17.3. Domain Specific Languages ... [allow(dead_code)] #[derive(Debug)] enum Food { CordonBleu, Steak, Sushi } #[derive(Debug)] enum Day { Mo ... nday, Tuesday, Wednesday } // We don't have the ingredients to make Sushi. // 我々は寿司 ... } } // We have the recipe for everything except Cordon Bleu. // コルドン・ブルー(Cordon Bleu)のレシピも持 ...
https://man.plustar.jp/rust/example/error/option_unwrap/and_then.html - [similar]
ハッシュマップ - Rust By Example 日本語版 9452
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... 17.1.2. オーバーロード 17.1.3. 繰り返し 17.2. DRY (Don't Repeat Yourself) 17.3. Domain Specific Languages ... Calling Daniel: {}", call(number)), _ => println!("Don't have Daniel's number."), } // `HashMap::insert() ... Calling Ashley: {}", call(number)), _ => println!("Don't have Ashley's number."), } contacts.remove(&"Ash ...
https://man.plustar.jp/rust/example/std/hash.html - [similar]
impl Trait - Rust By Example 日本語版 8996
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... 17.1.2. オーバーロード 17.1.3. 繰り返し 17.2. DRY (Don't Repeat Yourself) 17.3. Domain Specific Languages ... e If your function is generic over a trait but you don't mind the specific type, you can simplify the fun ... ()); assert_eq!(Some(5), v3.next()); println!("all done"); } More importantly, some Rust types can't be w ... using map and filter easier. Because closure types don't have names, you can't write out an explicit retu ...
https://man.plustar.jp/rust/example/trait/impl_trait.html - [similar]
Rust By Example 日本語版 8539
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... 17.1.2. オーバーロード 17.1.3. 繰り返し 17.2. DRY (Don't Repeat Yourself) 17.3. Domain Specific Languages ... z = 3f32; // Unsuffixed literals, their types depend on how they are used // サフィックスを指定しないリテ ... hes: Inch = 2 as u64_t; // Note that type aliases *don't* provide any extra type safety, because // alias ... つけて、返り値を返さないようにしてみましょう }; // ^ Don't forget to put a semicolon here! All `let` bindin ...
https://man.plustar.jp/rust/example/print.html - [similar]
if/else - Rust By Example 日本語版 7616
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... 17.1.2. オーバーロード 17.1.3. 繰り返し 17.2. DRY (Don't Repeat Yourself) 17.3. Domain Specific Languages ... つけて、返り値を返さないようにしてみましょう }; // ^ Don't forget to put a semicolon here! All `let` bindin ...
https://man.plustar.jp/rust/example/flow_control/if_else.html - [similar]
列挙型 - Rust By Example 日本語版 7616
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... 17.1.2. オーバーロード 17.1.3. 繰り返し 17.2. DRY (Don't Repeat Yourself) 17.3. Domain Specific Languages ... {}, yellow: {}, key (black): {}!", c, m, y, k), // Don't need another arm because all variants have been ...
https://man.plustar.jp/rust/example/flow_control/match/destructuring/destructure... - [similar]
構造体 - Rust By Example 日本語版 7616
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... 17.1.2. オーバーロード 17.1.3. 繰り返し 17.2. DRY (Don't Repeat Yourself) 17.3. Domain Specific Languages ... こともできる。 Foo { y, .. } => println!("y = {}, we don't care about x", y), // this will give an error: p ...
https://man.plustar.jp/rust/example/flow_control/match/destructuring/destructure... - [similar]
タプル - Rust By Example 日本語版 7616
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... 17.1.2. オーバーロード 17.1.3. 繰り返し 17.2. DRY (Don't Repeat Yourself) 17.3. Domain Specific Languages ... !("It doesn't matter what they are"), // `_` means don't bind the value to a variable // ここでは`_`は、値 ...
https://man.plustar.jp/rust/example/flow_control/match/destructuring/destructure... - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT