draconisplusplus/include/rfl/parsing/is_forward_list.hpp

23 lines
452 B
C++
Raw Normal View History

2024-05-31 22:59:00 -04:00
#ifndef RFL_PARSING_IS_FORWARD_LIST_HPP_
#define RFL_PARSING_IS_FORWARD_LIST_HPP_
#include <forward_list>
#include <type_traits>
namespace rfl {
2024-06-08 14:10:59 -04:00
namespace parsing {
2024-05-31 22:59:00 -04:00
2024-06-08 14:10:59 -04:00
template <class T>
class is_forward_list;
2024-05-31 22:59:00 -04:00
2024-06-08 14:10:59 -04:00
template <class T>
class is_forward_list : public std::false_type {};
2024-05-31 22:59:00 -04:00
2024-06-08 14:10:59 -04:00
template <class T>
class is_forward_list<std::forward_list<T>> : public std::true_type {};
2024-05-31 22:59:00 -04:00
2024-06-08 14:10:59 -04:00
} // namespace parsing
} // namespace rfl
2024-05-31 22:59:00 -04:00
#endif