capydi
Loading...
Searching...
No Matches
Overload.hpp
Go to the documentation of this file.
1#ifndef OVERLOAD_HPP_
2#define OVERLOAD_HPP_
3
4namespace capy::meta
5{
6
7template<typename... Units>
8struct Overload : Units...
9{
10 using Units::operator()...;
11};
12
13}
14
15#endif // !OVERLOAD_HPP_
Definition Rebind.hpp:7
Definition Overload.hpp:9