HighFive 3.0.0
HighFive - Header-only C++ HDF5 interface
Loading...
Searching...
No Matches
convert_size_vector.hpp
Go to the documentation of this file.
1/*
2 * Copyright (c), 2017, Adrien Devresse <adrien.devresse@epfl.ch>
3 * Copyright (c), 2017-2024, BlueBrain Project, EPFL
4 *
5 * Distributed under the Boost Software License, Version 1.0.
6 * (See accompanying file LICENSE_1_0.txt or copy at
7 * http://www.boost.org/LICENSE_1_0.txt)
8 *
9 */
10#pragma once
11
12#include <vector>
13
14namespace HighFive {
15namespace detail {
16
17template <class To, class From, class It = From const*>
18inline std::vector<To> convertSizeVector(const It& begin, const It& end) {
19 std::vector<To> to(static_cast<size_t>(end - begin));
20 std::copy(begin, end, to.begin());
21
22 return to;
23}
24
25template <class To, class From>
26inline std::vector<To> convertSizeVector(const std::vector<From>& from) {
27 return convertSizeVector<To, From>(from.cbegin(), from.cend());
28}
29
30} // namespace detail
31} // namespace HighFive
Definition assert_compatible_spaces.hpp:15