Iros
 
Loading...
Searching...
No Matches
method.h
Go to the documentation of this file.
1#pragma once
2
3#include "di/meta/language.h"
4
5namespace di::types {
6template<typename T, concepts::LanguageFunction S>
7struct Method {
8 using Type = Method;
9 using Tag = T;
10 using Signature = S;
11};
12}
13
14namespace di {
15using types::Method;
16}
Definition method.h:5
Definition zstring_parser.h:9
Definition method.h:7
S Signature
Definition method.h:10
Method Type
Definition method.h:8
T Tag
Definition method.h:9