Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 676 Bytes

uint_fast64_t.md

File metadata and controls

27 lines (22 loc) · 676 Bytes

uint_fast64_t

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

概要

64ビット以上の、通常最も高速に処理される符号なし整数型。

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

バージョン

言語

  • C++11

処理系