最終更新日時(UTC):
が更新

履歴 編集

function template
<initializer_list>

std::begin (非メンバ関数)(C++11)

template <class E>
const E* begin(initializer_list<E> il) noexcept;           // C++11

template <class E>
constexpr const E* begin(initializer_list<E> il) noexcept; // C++14

概要

先頭要素を指すポインタを取得する。

戻り値

例外

投げない

#include <iostream>
#include <initializer_list>

int main()
{
  std::initializer_list<int> init = {1, 2, 3};

  decltype(init)::iterator it = std::begin(init);

  std::cout << *it << std::endl;
}

出力

1

バージョン

言語

  • C++11

処理系

参照