📄 scalar_binary_function.hxx
字号:
// ---------------------------------------------------------- -*- c++ -*-// Scalar binary Function// ----------------------------------------------------------------------// file = _filename_// name = _name_// operator = _operator_// ----------------------------------------------------------------------template<typename T1_value, typename T2_value> struct _name_ { typedef typename promote<T1_value,T2_value>::promoted_t value_t; static inline value_t apply (T1_value a, T2_value b) { return _operator_ ( a , b ); } };
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -