検索
Results of 1 - 5 of about 5 for println (0.013 sec.)
- panic マクロの一貫性 - エディションガイド 12538
- 序文 1. エディションとは? 1.1. 新しいプロジェクトを作成する 1.2. 既存のプロジェクトのエディション
...
mat_args!(..) が使われるようになりました。つまり、 println!() と同じ書き方をすることになります。 panic!("{")...
の中身に見向きもしません。 // Rust 2018 let a = "{"; println!(a); // Error: First argument must be a format str...
マット引数 が安定化されたときです。 この機能により、 println!("hello {}", name) の代わりに println!("hello {nam...
意の式を受け付けることがなくなりました。 代わりに、 println!() と同様に、常に最初の引数をフォーマット文字列とし...
- https://man.plustar.jp/rust/edition/rust-2021/panic-macro-consistency.html - [similar]
- エディションガイド 9321
- 序文 1. エディションとは? 1.1. 新しいプロジェクトを作成する 1.2. 既存のプロジェクトのエディション
...
ro_export] macro_rules! foo { () => { let dyn = 1; println!("it is {}", dyn); // "これは {} です" }; } } マク...
この関数が問題 fn is_null(self: *mut Self) -> bool { println!("?"); true } } すると、最初のプログラムの2行目 s....
the struct // 構造体のフィールドの1つをムーブする println!("{}", a.y); // Ok: Still use another field of the...
K: 構造体の他のフィールドは、まだ使える let c = || println!("{}", a.y); // Error: Tries to capture all of `a`...
- https://man.plustar.jp/rust/edition/print.html - [similar]
- クロージャはフィールドごとにキャプチャする - エディションガイド 9045
- 序文 1. エディションとは? 1.1. 新しいプロジェクトを作成する 1.2. 既存のプロジェクトのエディション
...
the struct // 構造体のフィールドの1つをムーブする println!("{}", a.y); // Ok: Still use another field of the...
K: 構造体の他のフィールドは、まだ使える let c = || println!("{}", a.y); // Error: Tries to capture all of `a`...
/ それがないと、`x.0` だけがここでキャプチャされる println!("{:?}", x.0); }; } この解析は保守的です。ほとんど...
/ no-op // 何もしない }; let c = || match x { _ => println!("Hello World!") }; } この let _ = x は何もしません...
- https://man.plustar.jp/rust/edition/rust-2021/disjoint-capture-in-closures.html - [similar]
- 推論変数への生ポインタに対するメソッドのディスパッチ - エディションガイド 7629
- 序文 1. エディションとは? 1.1. 新しいプロジェクトを作成する 1.2. 既存のプロジェクトのエディション
...
この関数が問題 fn is_null(self: *mut Self) -> bool { println!("?"); true } } すると、最初のプログラムの2行目 s....
- https://man.plustar.jp/rust/edition/rust-2018/tyvar-behind-raw-pointer.html - [similar]
- 発展的な移行戦略 - エディションガイド 7372
- 序文 1. エディションとは? 1.1. 新しいプロジェクトを作成する 1.2. 既存のプロジェクトのエディション
...
ro_export] macro_rules! foo { () => { let dyn = 1; println!("it is {}", dyn); // "これは {} です" }; } } マク...
- https://man.plustar.jp/rust/edition/editions/advanced-migrations.html - [similar]
PREV
1
NEXT