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>
40 static const bool value = std::is_same<T*, decltype(std::declval<V>().data())>
::value;
Flexible representations for matrix data.
Definition Extractor.hpp:15
auto consecutive_extractor(const Matrix< Value_, Index_ > *mat, bool row, Index_ iter_start, Index_ iter_length, Args_ &&... args)
Definition consecutive_extractor.hpp:35
Compile time check for the data() method.
Definition has_data.hpp:21
static const bool value
Definition has_data.hpp:25