1#ifndef SCRAN_TESTS_VECTOR_N_HPP
2#define SCRAN_TESTS_VECTOR_N_HPP
21template<
typename Type_>
22std::vector<Type_>
vector_n(
const Type_* ptr,
size_t n) {
23 return std::vector<Type_>(ptr, ptr + n);
Test utilites for libscran.
Definition compare_almost_equal.hpp:11
std::vector< Type_ > vector_n(const Type_ *ptr, size_t n)
Definition vector_n.hpp:22