#ifndef TATAMI_HAS_DATA_H #define TATAMI_HAS_DATA_H #include #include namespace tatami { // Default to false. template struct has_data { static const bool value = false; }; // Specialization is only run if it _has_ a data method. template struct has_data { static const bool value = std::is_same::value; }; } #endif