⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 loop2.hpp

📁 矩阵运算源码最新版本
💻 HPP
字号:
// 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_LOOP2_INCLUDE#define META_MATH_LOOP2_INCLUDE// See loop3.hpp for examplenamespace meta_math {template <unsigned long Index0, unsigned long Max0, unsigned long Index1, unsigned long Max1>struct loop2{    static unsigned long const index0= Index0 - 1, next_index0= Index0,            	               index1= Index1 - 1, next_index1= Index1 + 1;};template <unsigned long Index0, unsigned long Max0, unsigned long Max1>struct loop2<Index0, Max0, Max1, Max1>{    static unsigned long const index0= Index0 - 1, next_index0= Index0 + 1,            	               index1= Max1 - 1, next_index1= 1;};template <unsigned long Max0, unsigned long Max1>struct loop2<Max0, Max0, Max1, Max1>{    static unsigned long const index0= Max0 - 1,            	               index1= Max1 - 1;};} // namespace meta_math#endif // META_MATH_LOOP2_INCLUDE

⌨️ 快捷键说明

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