• Class / Function / Type

      std::
    • Header file

      <>
    • Other / All

    最終更新日時(UTC):
    が更新

    履歴 編集

    function template
    <cstddef>

    std::to_integer

    namespace std {
      template <class IntType>
      constexpr IntType to_integer(byte b) noexcept;
    }
    

    概要

    byte型の値を任意の整数型に変換する。

    要件

    効果

    以下の式と等価の効果をもつ:

    return IntType(b);
    

    例外

    投げない

    #include <cassert>
    #include <cstddef>
    #include <cstdint>
    
    int main()
    {
      std::byte x{0b0000'1010};
    
      std::uint8_t result_u8 = std::to_integer<std::uint8_t>(x);
      assert(result_u8 == 0b0000'1010);
    
      unsigned char result_uc = std::to_integer<unsigned char>(x);
      assert(result_uc == 0b0000'1010);
    }
    

    出力

    バージョン

    言語

    • C++17

    処理系