All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Move.h
Go to the documentation of this file.
1 //=================================================================================================
33 //=================================================================================================
34 
35 #ifndef _BLAZE_MATH_SHIMS_MOVE_H_
36 #define _BLAZE_MATH_SHIMS_MOVE_H_
37 
38 
39 namespace blaze {
40 
41 //=================================================================================================
42 //
43 // MOVE SHIM
44 //
45 //=================================================================================================
46 
47 //*************************************************************************************************
60 template< typename Type >
61 inline void move( Type& dst, Type& src )
62 {
63  dst = src;
64 }
65 //*************************************************************************************************
66 
67 } // namespace blaze
68 
69 #endif
void move(DynamicMatrix< Type, SO > &dst, DynamicMatrix< Type, SO > &src)
Moving the contents of one dynamic matrix to another.
Definition: DynamicMatrix.h:4769