I was reading the documentation for std::any_cast
and I find it strange that the API has the cast either return a value to the held object or a pointer to it. Why not return a reference? A copy needs to be made every time the function is called with a non pointer type argument.
I can see that the pointer version of the cast might signal intentions a bit more and might be a bit more clear but why not have the value returned be a reference like this?
template<typename ValueType>
ValueType& any_cast(any* operand);
instead of
template <typename ValueType>
ValueType* any_cast(any* operand);
Further it seems like even if you ask for a reference the cast removes the reference and returns a copy to the stored object see the explanations for the return values for function overloads 1-3 here http://en.cppreference.com/w/cpp/utility/any/any_cast
See Question&Answers more detail:os