2024-05-31 22:59:00 -04:00
|
|
|
#ifndef RFL_EXTRACTDISTRIMINATORS_HPP_
|
|
|
|
#define RFL_EXTRACTDISTRIMINATORS_HPP_
|
|
|
|
|
|
|
|
#include <type_traits>
|
|
|
|
|
|
|
|
#include "TaggedUnion.hpp"
|
|
|
|
#include "define_literal.hpp"
|
|
|
|
#include "field_type.hpp"
|
|
|
|
#include "internal/extract_discriminators.hpp"
|
|
|
|
|
|
|
|
namespace rfl {
|
|
|
|
|
2024-06-08 14:10:59 -04:00
|
|
|
/// Extracts a Literal containing all of the discriminators from a
|
|
|
|
/// TaggedUnion.
|
|
|
|
template <class TaggedUnionType>
|
2024-06-16 00:13:15 -04:00
|
|
|
using extract_discriminators_t = typename internal::extract_discriminators<TaggedUnionType>::type;
|
2024-05-31 22:59:00 -04:00
|
|
|
|
2024-06-08 14:10:59 -04:00
|
|
|
} // namespace rfl
|
2024-05-31 22:59:00 -04:00
|
|
|
|
2024-06-08 14:10:59 -04:00
|
|
|
#endif // RFL_EXTRACTDISTRIMINATORS_HPP_
|