Public Types | |
using | begin_iterator = begin_iterator_t |
using | end_iterator = end_iterator_t |
using | begin_const_iterator = begin_const_iterator_t |
using | end_const_iterator = end_const_iterator_t |
Public Member Functions | |
Data (std::initializer_list< int > data) | |
begin_const_iterator | begin () const |
begin_iterator | begin () |
end_const_iterator | end () const |
end_iterator | end () |
bool | empty () const |
auto | size () const |
auto | operator[] (std::size_t index) -> decltype(auto) |
auto | operator[] (std::size_t index) const -> decltype(auto) |
Public Attributes | |
std::vector< int > | data |
Definition at line 73 of file RangeForWrapper_test.cc.
using Data::begin_const_iterator = begin_const_iterator_t |
Definition at line 78 of file RangeForWrapper_test.cc.
using Data::begin_iterator = begin_iterator_t |
Definition at line 76 of file RangeForWrapper_test.cc.
using Data::end_const_iterator = end_const_iterator_t |
Definition at line 79 of file RangeForWrapper_test.cc.
using Data::end_iterator = end_iterator_t |
Definition at line 77 of file RangeForWrapper_test.cc.
|
inline |
Definition at line 81 of file RangeForWrapper_test.cc.
|
inline |
Definition at line 83 of file RangeForWrapper_test.cc.
|
inline |
Definition at line 84 of file RangeForWrapper_test.cc.
|
inline |
Definition at line 88 of file RangeForWrapper_test.cc.
|
inline |
Definition at line 85 of file RangeForWrapper_test.cc.
|
inline |
Definition at line 86 of file RangeForWrapper_test.cc.
|
inline |
Definition at line 90 of file RangeForWrapper_test.cc.
|
inline |
Definition at line 92 of file RangeForWrapper_test.cc.
|
inline |
Definition at line 89 of file RangeForWrapper_test.cc.
std::vector<int> Data::data |
Definition at line 74 of file RangeForWrapper_test.cc.