Skip to content

Instantly share code, notes, and snippets.

@Sunday111
Sunday111 / signature.hpp
Created August 24, 2022 14:39
Get function or method information by type
#pragma once
#include <type_traits>
#include <tuple>
template<typename T>
struct Signature;
// function
template<typename Ret_, typename... Args_>