vectorOperations.hpp File Reference
File contains simple tools for std vectors. More...
#include <numeric>
#include <vector>
#include <algorithm>
#include <iostream>
Go to the source code of this file.
Functions | |
template<typename T > | |
std::vector< T > | julian::combineVectors (std::vector< T > v1, std::vector< T > v2) |
Combines vector v1 and v2 without duplicates. More... | |
template<class T > | |
std::ostream & | julian::operator<< (std::ostream &s, std::vector< T > &v) |
Overloaded << operator for vectors. More... | |
template<typename T , typename S > | |
void | julian::sort_vectors (std::vector< T > &benchmark, std::vector< S > &sorted) |
Sorting one vector basic on contents of another. More... | |
Detailed Description
File contains simple tools for std vectors.