HighFive 3.0.0
HighFive - Header-only C++ HDF5 interface
Loading...
Searching...
No Matches
compute_total_size.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <cstddef>
4#include <numeric>
5#include <functional>
6#include <vector>
7
8namespace HighFive {
9
10inline size_t compute_total_size(const std::vector<size_t>& dims) {
11 return std::accumulate(dims.begin(), dims.end(), size_t{1u}, std::multiplies<size_t>());
12}
13
14} // namespace HighFive
Definition assert_compatible_spaces.hpp:15
size_t compute_total_size(const std::vector< size_t > &dims)
Definition compute_total_size.hpp:10