Skip to content

Latest commit

 

History

History
42 lines (32 loc) · 1.18 KB

allocation_result.md

File metadata and controls

42 lines (32 loc) · 1.18 KB

allocation_result

  • memory[meta header]
  • std[meta namespace]
  • class[meta id-type]
  • cpp23[meta cpp]
namespace std {
  template <class Pointer, class SizeType = std::size_t>
  struct allocation_result {
    Pointer ptr;
    SizeType count;
  };
}

概要

std::allocation_resultは、allocate_at_least()関数の戻り値型であり、以下の要素をもつ:

変数名 説明
ptr 確保されたメモリの先頭を指すポインタ
count 実際に確保された要素数

バージョン

言語

  • C++23

処理系

関連項目

参照