y3c-stl 0.3.3
Friendly C++ STL wrapper with automatic stacktrace
Loading...
Searching...
No Matches
array-iter.cc

‍example output:

y3c-stl terminated: undefined behavior detected (ub_iter_after_end)
at y3c::array<int, 5>::iterator::operator+=(): iterated over the end() of container.
Stack trace (most recent call first):
#0 0x0000560a0c6d7778 in main at /home/runner/work/y3c-stl/y3c-stl/build/../examples/array-iter.cc:7:11
5: y3c::array<int, 5> a = {1, 2, 3, 4, 5};
6: y3c::array<int, 5>::iterator it = a.begin();
7: it += 10;
8: std::cout << *it << std::endl;
9: }
array, vector など各種コンテナのイテレータ
Definition iterator.h:26
contiguous_iterator & operator+=(std::ptrdiff_t n)
Definition iterator.h:156
Definition array.h:8
#include <y3c/array>
#include <iostream>
int main() {
y3c::array<int, 5> a = {1, 2, 3, 4, 5};
it += 10;
std::cout << *it << std::endl;
}
固定長配列 (std::array)
Definition array.h:20
iterator begin()
先頭要素を指すイテレータを取得
Definition array.h:270