Suppose I have the class
template<class T>
class Vector
{
public:
Vector() = default;
inline size_t size() const { return _vector.size(); }
private :
std::vector<T> _vector;
};
Is there any way to delegate functions (or operators) to _vector
, at compile time, without overhead ?
I can of course (and it's what I'm doing) forward everything by declaring every functions I need, and just call the appropriate function to the member, as I did with size()
.
This article propose exactly what I would need. For example using this :
template<class T>
class Vector
{
public:
Vector() = default;
private :
std::vector<T> _vector;
public:
using _vector {
size_t size() const;
void push_back(const T&);
}
};
The compiler would then generate the appropriate code. But I didn't find anything like this, is it possible ?