Thoth
A functional, expressive, asynchronous C++26 webdev library
Loading...
Searching...
No Matches
Overloads.hpp
Go to the documentation of this file.
1#pragma once
2
3namespace Thoth::Utils {
4 // thanks https://en.cppreference.com/w/cpp/utility/variant/visit2.html
5 template<class... Ts>
6 struct Overloaded : Ts... { using Ts::operator()...; };
7}
Definition Env.hpp:5
Definition Overloads.hpp:6