other¶
ソースコード¶
1template<typename T, typename S>
2T abs(const T &a, const S &b) { return a < b ? b-a : a-b; }
3
4template<typename T, typename S>
5T max(const T &a, const S &b) { return a < b ? b : a; }
6
7template<typename T, typename S>
8T min(const T &a, const S &b) { return a < b ? a : b; }
仕様¶
Warning
doxygenfile: Cannot find file “titan_cpplib/others/other.cpp