I've looked through the mess that is lexical_cast.hpp and this continues to escape me.
How is lexical_cast, whose 'base definition' takes both a template source and destination, able to accept grammar such as lexical_cast<int>("7")? I don't see how it can only need a templated return type and not need you to give the type of the parameter without doing something illegal like partial template specialization.
Note: I understand how you could do this with a single template type and overloads for different parameters, but I fail to understand how lexical_cast's is based off of a template function requiring both source and destination template types.