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
8
namespace
HighFive
{
9
10
inline
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
HighFive
Definition
assert_compatible_spaces.hpp:15
HighFive::compute_total_size
size_t compute_total_size(const std::vector< size_t > &dims)
Definition
compute_total_size.hpp:10
highfive
bits
compute_total_size.hpp
Generated by
1.9.8