Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 732 Bytes

uint_least8_t.md

File metadata and controls

27 lines (22 loc) · 732 Bytes

uint_least8_t

  • cstdint[meta header]
  • std[meta namespace]
  • type-alias[meta id-type]
  • cpp11[meta cpp]
namespace std {
  using uint_least8_t = unsigned-integer-type;
}
  • unsigned-integer-type[italic]

概要

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

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

バージョン

言語

  • C++11

処理系

  • Clang: 3.2 [mark verified]
  • GCC: 4.7.0 [mark verified]
  • ICC: ??
  • Visual C++: 2010 [mark verified], 2012 [mark verified], 2013 [mark verified]