I have a class that adapts std::vector to model a container of domain-specific objects. I want to expose most of the std::vector API to the user, so that they may use famili
The forwarding methods will be inlined away, anyhow. You will not get better performance this way. In fact, you will likely get worse performance.