Iros
 
Loading...
Searching...
No Matches
matching_sig.h
Go to the documentation of this file.
1#pragma once
2
3#include "di/meta/core.h"
4
5namespace di::meta {
6template<typename A, typename B>
7constexpr inline bool matching_sig = false;
8
9template<typename T, typename... A, typename U, typename... B>
10constexpr inline bool matching_sig<T(A...), U(B...)> = concepts::SameAs<T(A&&...), U(B&&...)>;
11}
Definition core.h:114
Definition merge_interfaces.h:6
constexpr bool matching_sig
Definition matching_sig.h:7