max.hpp

来自「矩阵运算源码最新版本」· HPP 代码 · 共 25 行

HPP
25
字号
// Software License for MTL// // Copyright (c) 2007 The Trustees of Indiana University. All rights reserved.// Authors: Peter Gottschling and Andrew Lumsdaine// // This file is part of the Matrix Template Library// // See also license.mtl.txt in the distribution.#ifndef META_MATH_MAX_INCLUDE#define META_MATH_MAX_INCLUDEnamespace meta_math {template <long int x, long int y>struct max{    typedef long int type;    static long int const value = x < y ? y : x;};} // namespace meta_math#endif // META_MATH_MAX_INCLUDE

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?