repr 0.1
Reconstructable string representations and more
Loading...
Searching...
No Matches
overload.h
Go to the documentation of this file.
1#pragma once
2
3namespace librepr::detail {
4
5template <typename... Fs>
6struct Overload : Fs... {
7 using Fs::operator()...;
8};
9
10template <typename... Fs>
11Overload(Fs...) -> Overload<Fs...>;
12
13} // namespace librepr::detail
Definition assert.h:89
Definition overload.h:6