Skip to content

Instantly share code, notes, and snippets.

@ethouris
ethouris / fmt.cc
Created November 17, 2023 08:46
C++ formatting helper
#include <iostream>
#include <iomanip>
#include <tuple>
template<class TYPE, typename... Args>
struct fmt_sender_proxy
{
const TYPE& valref;
typedef std::tuple<const Args&...> TupleType;
TupleType mani;