Radix Relay
Hybrid mesh communications with Signal Protocol encryption
Loading...
Searching...
No Matches
overload.hpp
Go to the documentation of this file.
1#pragma once
2
3namespace radix_relay::core {
4
16template<class... Ts> struct overload : Ts...
17{
18 using Ts::operator()...;
19};
20
21template<class... Ts> overload(Ts...) -> overload<Ts...>;
22
23}// namespace radix_relay::core
Helper for std::visit with overload pattern.
Definition overload.hpp:17