tatami
C++ API for different matrix representations
Loading...
Searching...
No Matches
ElementType.hpp
Go to the documentation of this file.
1#ifndef TATAMI_ELEMENTTYPE_HPP
2#define TATAMI_ELEMENTTYPE_HPP
3
4#include "copy.hpp"
5
11namespace tatami {
12
18template<class Array_>
19using ElementType = I<decltype(std::declval<Array_>()[0])>;
20
21}
22
23#endif
Copy data from one buffer to another.
Flexible representations for matrix data.
Definition Extractor.hpp:15
I< decltype(std::declval< Array_ >()[0])> ElementType
Definition ElementType.hpp:19