sumty  0.1.0
Better sum types for C++
is_subset_of< ES1, ES2 > Class Template Reference

Utility to test that one error_set is a subset of another. More...

#include <sumty/error_set.hpp>

Inheritance diagram for is_subset_of< ES1, ES2 >:
Collaboration diagram for is_subset_of< ES1, ES2 >:

Related Functions

(Note that these are not member functions.)

template<typename ES1 , typename ES2 >
static constexpr bool is_subset_of_v = is_subset_of<ES1, ES2>::value
 Utility to test that one error_set is a subset of another. More...
 

Detailed Description

template<typename ES1, typename ES2>
class sumty::is_subset_of< ES1, ES2 >

Utility to test that one error_set is a subset of another.

This type is a template metaprogramming utility to test that the error_set ES1 is a subset of the error_set ES2. If every alternative of ES1 is an alternative of ES2, regardless of order or index, then ES1 is a subset of ES2. The static member constant value is a bool that is true if ES1 is a subset of ES2.

Example

assert(is_subset_of<
error_set<error1>,
error_set<error3, error2, error2>
>::value);
assert(!is_subset_of<
error_set<error3, error2, error2>
error_set<error1>,
>::value);
Template Parameters
ES1The proposed subset
ES2The proposed superset

Friends And Related Function Documentation

◆ is_subset_of_v

constexpr bool is_subset_of_v = is_subset_of<ES1, ES2>::value
related

Utility to test that one error_set is a subset of another.

This is a template metaprogramming utility to test that the error_set, ES1, is a subset of the error_set ES2. If every alternative of ES1 is an alternative of ES2, regardless of order or index, then ES1 is a subset of ES2.

Example

error_set<error1>,
error_set<error3, error2, error2>
>);
error_set<error3, error2, error2>
error_set<error1>,
>);
static constexpr bool is_subset_of_v
Utility to test that one error_set is a subset of another.
Definition: error_set.hpp:2659
Template Parameters
ES1The proposed subset
ES2The proposed superset

The documentation for this class was generated from the following file: