meta
parent
b6048ed39c
commit
4de3aeb87c
|
@ -1,7 +1,7 @@
|
|||
cmake_minimum_required(VERSION 3.20)
|
||||
include(cmake/color.cmake)
|
||||
|
||||
set(BLT_VERSION 0.18.3)
|
||||
set(BLT_VERSION 0.18.4)
|
||||
set(BLT_TEST_VERSION 0.0.1)
|
||||
|
||||
set(BLT_TARGET BLT)
|
||||
|
|
|
@ -0,0 +1,62 @@
|
|||
#pragma once
|
||||
/*
|
||||
* Copyright (C) 2024 Brett Terpstra
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef BLT_META_H
|
||||
#define BLT_META_H
|
||||
|
||||
#include <blt/std/types.h>
|
||||
#include <utility>
|
||||
|
||||
namespace blt::meta
|
||||
{
|
||||
template<typename IFirst, typename... IArgs>
|
||||
struct arg_helper
|
||||
{
|
||||
using First = IFirst;
|
||||
using Next = arg_helper<IArgs...>;
|
||||
};
|
||||
|
||||
template<>
|
||||
struct arg_helper<void>
|
||||
{
|
||||
using First = void;
|
||||
using Next = void;
|
||||
};
|
||||
|
||||
template<typename TheLambda, typename>
|
||||
struct lambda_helper
|
||||
{
|
||||
using Lambda = TheLambda;
|
||||
};
|
||||
|
||||
template<typename TheLambda, typename IReturn, typename IClass, typename... LArgs>
|
||||
struct lambda_helper<TheLambda, IReturn(IClass::*)(LArgs...)>
|
||||
{
|
||||
using Lambda = TheLambda;
|
||||
using Return = IReturn;
|
||||
using Class = IClass;
|
||||
using Args = arg_helper<LArgs...>;
|
||||
};
|
||||
|
||||
template<typename Lambda>
|
||||
lambda_helper(Lambda) -> lambda_helper<Lambda, decltype(&Lambda::operator())>;
|
||||
|
||||
|
||||
}
|
||||
|
||||
#endif //BLT_GP_META_H
|
Loading…
Reference in New Issue