1#ifndef TATAMI_HAS_DATA_HPP
2#define TATAMI_HAS_DATA_HPP
20template<
typename T,
class V,
typename =
int>
25 static const bool value =
false;
35template<
typename T,
class V>
36struct has_data<T, V, decltype((void) std::declval<V>().data(), 0)> {
40 static const bool value = std::is_same<T*, decltype(std::declval<V>().data())>
::value;
Flexible representations for matrix data.
Definition Extractor.hpp:15
Compile time check for the data() method.
Definition has_data.hpp:21
static const bool value
Definition has_data.hpp:25