検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 10 for Single (0.032 sec.)
ジェネリクス - Rust By Example 日本語版 14194
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... `A`という具象型 struct A; // In defining the type `Single`, the first use of `A` is not preceded by `<A>`. / ... / Therefore, `Single` is a concrete type, and `A` is defined as above. ... // `Single`という型を定義する際に`A`を使用しているが、その最初 ... `<A>`がないため、また、`A`自身も具象型であるため、`Single`は具象型となる。 struct Single(A); // ^ Here is `S ...
https://man.plustar.jp/rust/example/generics.html - [similar]
構造体 - Rust By Example 日本語版 8938
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... 'a i32), } fn main() { let x = 18; let y = 15; let single = Borrowed(&x); let double = NamedBorrowed { x: &x ... Either::Num(y); println!("x is borrowed in {:?}", single); println!("x and y are borrowed in {:?}", double) ...
https://man.plustar.jp/rust/example/scope/lifetime/struct.html - [similar]
他言語関数インターフェイス - Rust By Example 日本語版 8938
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... ign function // that computes the square root of a single precision complex number // 他言語の関数宣言。 // ... {:?}", z, cos(z)); } // Minimal implementation of single precision complex numbers // 単精度浮動小数の複素数 ...
https://man.plustar.jp/rust/example/std_misc/ffi.html - [similar]
match - Rust By Example 日本語版 8277
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... l me about {}", number); match number { // Match a single value // 単一の値とのマッチをチェック 1 => println ...
https://man.plustar.jp/rust/example/flow_control/match.html - [similar]
ジェネリックトレイト - Rust By Example 日本語版 8277
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... od on the caller type which takes an // additional single parameter `T` and does nothing with it. // `self`に ...
https://man.plustar.jp/rust/example/generics/gen_trait.html - [similar]
可変個引数 - Rust By Example 日本語版 8277
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... 単一の`eval`のためのパターン // The pattern for a single `eval` (eval $e:expr) => {{ { let val: usize = $e; ...
https://man.plustar.jp/rust/example/macros/variadics.html - [similar]
Partial moves - Rust By Example 日本語版 8277
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... 日本語版 Partial moves Within the destructuring of a single variable, both by-move and by-reference pattern bi ...
https://man.plustar.jp/rust/example/scope/move/partial_move.html - [similar]
デバッグ - Rust By Example 日本語版 8134
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... e`. `Structure` // is a structure which contains a single `i32`. // `Structure`という構造体のための`fmt::Deb ...
https://man.plustar.jp/rust/example/hello/print/print_debug.html - [similar]
Testcase: map-reduce - Rust By Example 日本語版 8134
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... combine each thread's intermediate results into a single final sum. // // we use the "turbofish" ::<> to pr ...
https://man.plustar.jp/rust/example/std_misc/threads/testcase_mapreduce.html - [similar]
Rust By Example 日本語版 7866
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... e`. `Structure` // is a structure which contains a single `i32`. // `Structure`という構造体のための`fmt::Deb ... l me about {}", number); match number { // Match a single value // 単一の値とのマッチをチェック 1 => println ...
https://man.plustar.jp/rust/example/print.html - [similar]
PREV 1 NEXT