検索

phrase: max: clip:
target: order:
Results of 181 - 190 of about 193 for Rc (0.065 sec.)
Testcase: map-reduce - Rust By Example 日本語版 5302
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... プ ❱ 19.7.1. key型の変種 19.7.2. ハッシュ集合 19.8. Rc 19.9. Arc 20. 標準ライブラリのその他 ❱ 20.1. スレッ ... here are synchronisation primitives like Mutex es or Channel s.) In this example, we will calculate the ... digits in a block of numbers. We will do this by parcelling out chunks of the block into different threa ...
https://man.plustar.jp/rust/example/std_misc/threads/testcase_mapreduce.html - [similar]
Documentation testing - Rust By Example 日本語版 5302
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... プ ❱ 19.7.1. key型の変種 19.7.2. ハッシュ集合 19.8. Rc 19.9. Arc 20. 標準ライブラリのその他 ❱ 20.1. スレッ ... enting a Rust project is through annotating the source code. Documentation comments are written in markd ... ed out Doc-tests doccomments running 3 tests test src/lib.rs - add (line 7) ... ok test src/lib.rs - div ... (line 21) ... ok test src/lib.rs - div (line 31) ... ok test result: ok. 3 p ...
https://man.plustar.jp/rust/example/testing/doc_testing.html - [similar]
Unit testing - Rust By Example 日本語版 5302
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... プ ❱ 19.7.1. key型の変種 19.7.2. ハッシュ集合 19.8. Rc 19.9. Arc 20. 標準ライブラリのその他 ❱ 20.1. スレッ ... ailed: `(left == right)` left: `-1`, right: `3`', src/lib.rs:21:8 note: Run with `RUST_BACKTRACE=1` for ... ng panics To check functions that should panic under certain circumstances, use attribute #[should_panic ...
https://man.plustar.jp/rust/example/testing/unit_testing.html - [similar]
クローン - Rust By Example 日本語版 5302
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... プ ❱ 19.7.1. key型の変種 19.7.2. ハッシュ集合 19.8. Rc 19.9. Arc 20. 標準ライブラリのその他 ❱ 20.1. スレッ ... clone() を用います。 // A unit struct without resources // いかなる資源も持たない構造体 #[derive(Debug, ... e, Copy)] struct Unit; // A tuple struct with resources that implements the `Clone` trait // `Clone`トレ ... let unit = Unit; // Copy `Unit`, there are no resources to move // `Unit`をコピー、移動させる資源は存在し ...
https://man.plustar.jp/rust/example/trait/clone.html - [similar]
継承(Derive) - Rust By Example 日本語版 5302
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... プ ❱ 19.7.1. key型の変種 19.7.2. ハッシュ集合 19.8. Rc 19.9. Arc 20. 標準ライブラリのその他 ❱ 20.1. スレッ ...
https://man.plustar.jp/rust/example/trait/derive.html - [similar]
impl Trait - Rust By Example 日本語版 5302
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... プ ❱ 19.7.1. key型の変種 19.7.2. ハッシュ集合 19.8. Rc 19.9. Arc 20. 標準ライブラリのその他 ❱ 20.1. スレッ ... code: fn parse_csv_document<R: std::io::BufRead>(src: R) -> std::io::Result<Vec<Vec<String>>> { src.lin ... es() .map(|line| { // For each line in the source line.map(|line| { // If the line was read success ... e R is, and R is only used to declare the type of src , so the function can also be written an fn parse_ ...
https://man.plustar.jp/rust/example/trait/impl_trait.html - [similar]
イテレータ - Rust By Example 日本語版 5302
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... プ ❱ 19.7.1. key型の変種 19.7.2. ハッシュ集合 19.8. Rc 19.9. Arc 20. 標準ライブラリのその他 ❱ 20.1. スレッ ... する`Iterator` let mut sequence = 0..3; println!("Four consecutive `next` calls on 0..3"); println!("> {:? ...
https://man.plustar.jp/rust/example/trait/iter.html - [similar]
演算子のオーバーロード - Rust By Example 日本語版 5302
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... プ ❱ 19.7.1. key型の変種 19.7.2. ハッシュ集合 19.8. Rc 19.9. Arc 20. 標準ライブラリのその他 ❱ 20.1. スレッ ...
https://man.plustar.jp/rust/example/trait/ops.html - [similar]
トレイト - Rust By Example 日本語版 5302
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... プ ❱ 19.7.1. key型の変種 19.7.2. ハッシュ集合 19.8. Rc 19.9. Arc 20. 標準ライブラリのその他 ❱ 20.1. スレッ ... ..", self.name()); } else { println!("{} gets a haircut!", self.name); self.naked = true; } } } // Imple ...
https://man.plustar.jp/rust/example/trait.html - [similar]
型キャスティング - Rust By Example 日本語版 5302
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... プ ❱ 19.7.1. key型の変種 19.7.2. ハッシュ集合 19.8. Rc 19.9. Arc 20. 標準ライブラリのその他 ❱ 20.1. スレッ ...
https://man.plustar.jp/rust/example/types/cast.html - [similar]