HighFive 3.0.0
HighFive - Header-only C++ HDF5 interface
Loading...
Searching...
No Matches
boost_span.hpp
Go to the documentation of this file.
1#pragma once
2
4#include "H5Exception.hpp"
6
7#include <boost/core/span.hpp>
8
9namespace HighFive {
10namespace details {
11template <class T, std::size_t Extent>
12struct inspector<boost::span<T, Extent>>: public inspector_stl_span<boost::span<T, Extent>> {
13 private:
14 using super = inspector_stl_span<boost::span<T, Extent>>;
15
16 public:
17 using type = typename super::type;
18 using value_type = typename super::value_type;
19 using base_type = typename super::base_type;
20 using hdf5_type = typename super::hdf5_type;
21};
22
23} // namespace details
24} // namespace HighFive
Definition assert_compatible_spaces.hpp:15