検索
Results of 1 - 3 of about 3 for gen (0.007 sec.)
- 関数 - Rust By Example 日本語版 11849
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
S(A); // Concrete type `S`. // 具象型`S`. struct SGen<T>(T); // Generic type `SGen`. // ジェネリック型`S...
of type `S`. // This has no `<T>` so this is not a generic function. // `S`という型の引数`_s`をとる`reg_f...
数ではない fn reg_fn(_s: S) {} // Define a function `gen_spec_t` that takes an argument `_s` of type `SGen<...
A`, but because `A` has not // been specified as a generic type parameter for `gen_spec_t`, it is not gen...
- https://man.plustar.jp/rust/example/generics/gen_fn.html - [similar]
- メソッド - Rust By Example 日本語版 8557
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
struct S; // Concrete type `S` // 具象型`S` struct GenericVal<T>(T); // Generic type `GenericVal` // ジェ...
ネリック型`GenericVal` // impl of GenericVal where we explicitly...
type parameters: // 型パラメータを指定したうえで、GenericValにメソッドを実装 impl GenericVal<f32> {} //...
Specify `f32` // `f32`の場合のメソッド impl GenericVal<S> {} // Specify `S` as defined above // 上...
- https://man.plustar.jp/rust/example/generics/impl.html - [similar]
- Playpen - Rust By Example 日本語版 7459
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
round_url . See also: The Rust Playground The next-gen playpen The rustdoc Book 関連キーワード: Playpen ,...
- https://man.plustar.jp/rust/example/meta/playpen.html - [similar]
PREV
1
NEXT