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

Utility to test that one error_set is equivalent to another. More...

#include <sumty/error_set.hpp>

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

Related Functions

(Note that these are not member functions.)

template<typename ES1 , typename ES2 >
static constexpr bool is_equivalent_v = is_equivalent<ES1, ES2>::value
 Utility to test that one error_set is equivalent to another. More...
 

Detailed Description

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

Utility to test that one error_set is equivalent to another.

This type is a template metaprogramming utility to test that the error_set ES1 is equivalent to the error_set ES2. Two error_set instantiations are equivalent if each alternative type of one is an alternative type in the other, in both directions. Thus equivalence is commutative. So, reworded, the two are equivalent if the have the same alternative types, but potentially in different orders.

is_equivalent has the member constant value, which is true if the two error_set instantiations are equivalent, and false otherwise.

Example

assert(is_equivalent<
error_set<error1, error2, error3>,
error_set<error2, error1, error3>
>::value);
assert(!is_equivalent<
error_set<error1, error2, error3>,
error_set<error1, error2>
>::value);
Template Parameters
ES1An error_set type
ES2An error_set type

Friends And Related Function Documentation

◆ is_equivalent_v

constexpr bool is_equivalent_v = is_equivalent<ES1, ES2>::value
related

Utility to test that one error_set is equivalent to another.

This is a template metaprogramming utility to test that the error_set ES1 is equivalent to the error_set ES2. Two error_set instantiations are equivalent if each alternative type of one is an alternative type in the other, in both directions. Thus equivalence is commutative. So, reworded, the two are equivalent if the have the same alternative types, but potentially in different orders.

Example

error_set<error1, error2, error3>,
error_set<error2, error1, error3>
>);
error_set<error1, error2, error3>,
error_set<error1, error2>
>);
static constexpr bool is_equivalent_v
Utility to test that one error_set is equivalent to another.
Definition: error_set.hpp:2724
Template Parameters
ES1An error_set type
ES2An error_set type

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