MyraMath
copy.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_DENSE_COPY_H
7 #define MYRAMATH_DENSE_COPY_H
8 
15 
16 namespace myra {
17 
18 // Forward declarations
19 template<class Number> class CVectorRange;
20 template<class Number> class VectorRange;
21 
23 void copy(const CVectorRange<NumberS>& x, const VectorRange<NumberS>& y);
25 void copy(const CVectorRange<NumberD>& x, const VectorRange<NumberD>& y);
26 void copy(const CVectorRange<NumberC>& x, const VectorRange<NumberC>& y);
27 void copy(const CVectorRange<NumberZ>& x, const VectorRange<NumberZ>& y);
29 
30 } // namespace
31 
32 #endif
Definition: syntax.dox:1
Various utility functions/classes related to scalar Number types.