名前空間
変種
操作

標準ライブラリヘッダ <initializer_list>

提供: cppreference.com
< cpp‎ | header
 
 
 

このヘッダはユーティリティライブラリの一部です。

クラス

リスト初期化で一時的な配列を作成し、それを参照します
(クラステンプレート) [edit]

関数

std::begin の特殊化
(関数テンプレート) [edit]
std::end の特殊化
(関数テンプレート) [edit]

[編集] 概要

namespace std {
  template<class E> class initializer_list {
  public:
    using value_type      = E;
    using reference       = const E&;
    using const_reference = const E&;
    using size_type       = size_t;
 
    using iterator        = const E*;
    using const_iterator  = const E*;
 
    constexpr initializer_list() noexcept;
 
    constexpr size_t size() const noexcept;     // number of elements
    constexpr const E* begin() const noexcept;  // first element
    constexpr const E* end() const noexcept;    // one past the last element
  };
 
  // initializer list range access
  template<class E> constexpr const E* begin(initializer_list<E> il) noexcept;
  template<class E> constexpr const E* end(initializer_list<E> il) noexcept;
}