2017-02-15から1日間の記事一覧

Type Aliases

https://doc.rust-lang.org/book/type-aliases.html typeキーワードで型に別名をつけられる。C言語でいうtypedef。 fn main() { type Name = String; let x: Name = "Hello".to_string(); println!("{}", x); type Num = i32; let x: i32 = 5; let y: Num = …