MCPcopy Create free account
hub / github.com/Naios/function2 / LeftRightType

Class LeftRightType

test/function2-test.hpp:94–102  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

92template <template <typename, bool, bool, typename...> class Left,
93 template <typename, bool, bool, typename...> class Right>
94struct LeftRightType : LeftType<Left> {
95 /// Right function type which is provided by this test case.
96 /// The right type is assignable to the left type.
97 template <typename Fn, bool Throwing = true, typename... Additional>
98 using right_t = Right<Fn, Throwing, true, Additional...>;
99
100 template <typename Fn, typename... Additional>
101 using right_multi_t = Right<Fn, false, true, Additional...>;
102};
103
104/// Base class for typed function tests
105template <typename Provider>

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected