yohhoyの日記

技術的メモをしていきたい日記

2016-11-01から1日間の記事一覧

to be, or not to be?

Rust標準ライブラリのコメントより。整数型*1に対してBig Endianへの変換メソッドto_beが提供される。その他にもEndianness変換メソッドto_le, from_be, from_leが提供される。 pub fn to_be(self) -> Self { // or not to be? if cfg!(target_endian = "big…