Utility Rack
Loading...
Searching...
No Matches
overloaded.hpp
Go to the documentation of this file.
1
20#ifndef OVERLOADED_HPP_INCLUDED
21#define OVERLOADED_HPP_INCLUDED
22
23namespace chops {
24 template<class... Ts> struct overloaded : Ts... { using Ts::operator()...; };
25 template<class... Ts> overloaded(Ts...) -> overloaded<Ts...>;
26} // end namespace
27
28#endif
29
Definition overloaded.hpp:24