If I'm not wrong, these function parameters:
void foo(const Type& type);
void foo(Type const& type);
are equivalent. What is the standard way to declare them? By using the first or the second function declaration? With "standard" I mean the most readable and used version, if ISO C++ does not define any spec.