2007-11-20から1日間の記事一覧

テンプレートメタプログラミングでいろいろ書いたメモ

// ビットからバイト、バイトからビットへ単位を変換 template<uint TValue> struct bit_to_bytes { static const uint value = TValue >> 3; }; template<uint TValue> struct byte_to_bits { static const uint value = TValue << 3; }; // 2 の TValue 乗 template<int TValue> struct power2 { </int></uint></uint>…