capydi
Loading...
Searching...
No Matches
Resolution.hpp
Go to the documentation of this file.
1
16
17#ifndef RESOLUTION_HPP_
18#define RESOLUTION_HPP_
19
22#include <type_traits>
23#include <expected>
24
25namespace capy::di
26{
27
28template<typename T, typename Dependency, typename Error_>
29concept Resolution
32 && std::same_as<typename T::error_type, Error_>;
33
34}
35
36#endif // !RESOLUTION_HPP_
Definition Resolution.hpp:30
Definition Reference.hpp:10
Definition WrappedWIth.hpp:30
Definition Decorator.hpp:19