C++template
from C++

C++mrsekut


Generics


template <class T>
T max(const T &x, const T &y) {
return x < y ? y : x;
}