JAPAn
Just Another Parity Analyzer
Loading...
Searching...
No Matches
QwUtil.h
Go to the documentation of this file.
1/*!
2 * \file QwUtil.h
3 * \brief Helper functions and utilities for analysis operations
4 * \author Ole Hansen
5 * \date 2023-08-16
6 */
7
8#pragma once
9
10#include <algorithm>
11#include <iterator>
12
13// Copy C-style array a to b
14template<typename T>
15void QwCopyArray( const T& a, T& b ) {
16 for (size_t i=0; i<a.size(); i++){
17 b.at(i).CopyFrom(a.at(i));
18 }
19}
void QwCopyArray(const T &a, T &b)
Definition QwUtil.h:15