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 Dst, typename Src >
61 inline void move( Dst& dst, Src& src )
62 {
63  dst = src;
64 }
65 //*************************************************************************************************
66 
67 } // namespace blaze
68 
69 #endif
Namespace of the Blaze C++ math library.
Definition: Blaze.h:57
void move(DynamicMatrix< Type, SO > &dst, DynamicMatrix< Type, SO > &src)
Moving the contents of one dynamic matrix to another.
Definition: DynamicMatrix.h:4934