Skip to content

Latest commit

 

History

History
28 lines (23 loc) · 696 Bytes

uint_least32_t.md

File metadata and controls

28 lines (23 loc) · 696 Bytes

#uint_least32_t

  • cstdint[meta header]
  • std[meta namespace]
  • typedef[meta id-type]
  • cpp11[meta cpp]
namespace std {
  typedef unsigned-integer-type uint_least32_t;
}
  • unsigned-integer-type[italic]

##概要 32ビット以上の、最も小さい符号なし整数型。

uint32_t型が環境によっては定義されないため、そのような状況でこの型を使用する。

##バージョン ###言語

  • C++11

###処理系