検索
Results of 1 - 3 of about 3 for assign (0.008 sec.)
- DRY (Don't Repeat Yourself) - Rust By Example 日本語版 11924
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
// *x = x.$method(*y); } } }; } // Implement `add_assign`, `mul_assign`, and `sub_assign` functions. // `ad...
d_assign`、`mul_assign`、`sub_assign`、関数を実装 op!(add_a...
ssign, Add, +=, add); op!(mul_assign, Mul, *=, mul); op!(sub_assign, Sub, -=, sub); mod...
ut x, &y); assert_eq!(x, z); } } }; } // Test `add_assign`, `mul_assign`, and `sub_assign`. // `add_assign`と...
- https://man.plustar.jp/rust/example/macros/dry.html - [similar]
- ポインタとref - Rust By Example 日本語版 8036
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
クトには & , ref , ref mut を用いる。 fn main() { // Assign a reference of type `i32`. The `&` signifies there...
// is a reference being assigned. // `i32`型へのリファレンスをアサインする。 // `...
hing `&`s are dropped, then the `i32` // should be assigned to `val`. // ^ よって`&`を落とせば、`i32`が`val`...
`ref` for exactly this purpose. It modifies the // assignment so that a reference is created for the element...
- https://man.plustar.jp/rust/example/flow_control/match/destructuring/destructure... - [similar]
- Rust By Example 日本語版 7924
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
x_cube = x_squared * x; // This expression will be assigned to `y` // この式は`y`に代入されます。 x_cube + x...
e semicolon suppresses this expression and `()` is assigned to `z` // セミコロンがあるので`z`には`()`が入りま...
クトには & , ref , ref mut を用いる。 fn main() { // Assign a reference of type `i32`. The `&` signifies there...
// is a reference being assigned. // `i32`型へのリファレンスをアサインする。 // `...
- https://man.plustar.jp/rust/example/print.html - [similar]
PREV
1
NEXT