LA
Size: a a a
LA
D
(this->*method)(args...)
не увидел, автор почему-то ((*this).*method)(args...)
пишетs
struct iterator
{
auto begin() {
return data.begin();
}
iterator end() {
return data.end();
}
};
U
s
s
U
s
U
s
struct iterator
{
auto begin() {
return data.begin();
}
iterator end() {
return data.end();
}
};
RM
(this->*method)(args...)
не увидел, автор почему-то ((*this).*method)(args...)
пишетRM
MK
(this->*method)(args...)
не увидел, автор почему-то ((*this).*method)(args...)
пишетD
MK
MK
s
s
s
std::vector< T > data;