Libsockcanpp
A complete C++ wrapper around socketcan.
Loading...
Searching...
No Matches
EnumCheck.hpp
Go to the documentation of this file.
1/**
2 * @file EnumCheck.hpp
3 * @author Simon Cahill (contact@simonc.eu)
4 * @brief Contains the implementation og a constexpr enumeration value checker.
5 * @version 0.1
6 * @date 2025-03-25
7 *
8 * The entirety of this code is copied from https://stackoverflow.com/a/33091821/2921426
9 *
10 * @copyright Copyright (c) 2025 Simon Cahill.
11 */
12
13#ifndef LIBSOCKCANPP_INCLUDE_ENUMCHECK_HPP
14#define LIBSOCKCANPP_INCLUDE_ENUMCHECK_HPP
15
16namespace sockcanpp {
17
18 template<typename EnumType, EnumType... Values>
19 class EnumCheck;
20
21 template<typename EnumType>
22 class EnumCheck<EnumType> {
23 public:
24 template<typename IntType>
25 static bool constexpr is_value(IntType) { return false; }
26 };
27
28 template<typename EnumType, EnumType V, EnumType... Next>
29 class EnumCheck<EnumType, V, Next...> : private EnumCheck<EnumType, Next...> {
30 using super = EnumCheck<EnumType, Next...>;
31
32 public:
33 template<typename IntType>
34 static bool constexpr is_value(IntType v) {
35 return v == static_cast<IntType>(V) || super::is_value(v);
36 }
37 };
38
39}
40
41#endif // LIBSOCKCANPP_INCLUDE_ENUMCHECK_HPP
static bool constexpr is_value(IntType v)
Definition EnumCheck.hpp:34
static bool constexpr is_value(IntType)
Definition EnumCheck.hpp:25
Main library namespace.
Definition CanDriver.cpp:56