MostlyHarmless 0.0.1
Loading...
Searching...
No Matches
mostlyharmless_Visitor.h
Go to the documentation of this file.
1//
2// Created by Syl Morrison on 29/11/2025.
3//
4
5#ifndef MOSTLYHARMLESS_VISITOR_H
6#define MOSTLYHARMLESS_VISITOR_H
21 template <typename... Callable>
22 struct Visitor : Callable... {
23 using Callable::operator()...;
24 };
25} // namespace mostly_harmless::utils
26#endif // GLEO_MOSTLYHARMLESS_VISITOR_H
Contains general purpose utility classes & functions.
Definition mostlyharmless_TaskThread.h:12
Util for use with std::visit to avoid a bunch of if constexpr(...)s.
Definition mostlyharmless_Visitor.h:22