MyraMath
Index2pair.h
Go to the documentation of this file.
1 // ========================================================================= //
2 // This file is part of MyraMath, copyright (c) 2014-2019 by Ryan A Chilton //
3 // and distributed by MyraCore, LLC. See LICENSE.txt for license terms. //
4 // ========================================================================= //
5 
6 #ifndef MYRAMATH_EXPRESSION_INDEX2PAIR_H
7 #define MYRAMATH_EXPRESSION_INDEX2PAIR_H
8 
14 #include <myramath/MYRAMATH_EXPORT.h>
15 #include <utility>
16 
17 namespace myra {
18 
19 // Forward declarations.
20 template<int N> class Index;
21 
23 MYRAMATH_EXPORT std::pair<int,int> Index2pair(const Index<2>& ij);
24 
25 } // namespace myra
26 
27 #endif
Definition: syntax.dox:1