sumty  0.1.0
Better sum types for C++
make_error_set< T > Class Template Reference

Utility to create an error_set type. More...

#include <sumty/error_set.hpp>

Inheritance diagram for make_error_set< T >:
Collaboration diagram for make_error_set< T >:

Related Functions

(Note that these are not member functions.)

template<typename... T>
using make_error_set_t = typename make_error_set< T... >::type
 Utility to create an error_set type. More...
 

Detailed Description

template<typename... T>
class sumty::make_error_set< T >

Utility to create an error_set type.

make_error_set is a builder for the error_set type that deduplicates alternatives. error_set requires that each alternative be a unique type, so make_error_set simplifies generically building an error_set by ensuring that condition is met automatically.

Example

assert(is_equivalent_v<
typename make_error_set<
error1, error2, error1, error1, error3, error2
>::type,
error_set<error1, error2, error3>
>);
Template Parameters
TThe alternative types of the resulting error_set

Friends And Related Function Documentation

◆ make_error_set_t

using make_error_set_t = typename make_error_set<T...>::type
related

Utility to create an error_set type.

make_error_set is a builder for the error_set type that deduplicates alternatives. error_set requires that each alternative be a unique type, so make_error_set simplifies generically building an error_set by ensuring that condition is met automatically.

Example

assert(is_equivalent_v<
make_error_set_t<error1, error2, error1, error1, error3, error2>,
error_set<error1, error2, error3>
>);
Template Parameters
TThe alternative types of the resulting error_set

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