Lines Matching refs:swap
46 #include <algorithm> // for std::swap
424 void swap(Matrix & m1, Matrix & m2);
433 void swap(Matrix & m1, Matrix & m2)
436 using std::swap;
437 swap(m1.m_matrix, m2.m_matrix);
442 using std::swap;
443 swap(m1.m_matrix, m2.m_matrix);
444 swap(m1.m_rows, m2.m_rows);
445 swap(m1.m_columns, m2.m_columns);
574 using std::swap;
575 swap(m1.m_matrix_view, m2.m_matrix_view);