Utility Rack
Loading...
Searching...
No Matches
overloaded.hpp
Go to the documentation of this file.
1
27#ifndef OVERLOADED_HPP_INCLUDED
28#define OVERLOADED_HPP_INCLUDED
29
30namespace chops {
31 template<class... Ts> struct overloaded : Ts... { using Ts::operator()...; };
32 template<class... Ts> overloaded(Ts...) -> overloaded<Ts...>;
33} // end namespace
34
35#endif
36
Definition overloaded.hpp:31