silly
parent
a18c114cec
commit
94bd73d942
|
@ -1,5 +1,5 @@
|
||||||
cmake_minimum_required(VERSION 3.25)
|
cmake_minimum_required(VERSION 3.25)
|
||||||
project(blt-gp VERSION 0.0.4)
|
project(blt-gp VERSION 0.0.5)
|
||||||
|
|
||||||
option(ENABLE_ADDRSAN "Enable the address sanitizer" OFF)
|
option(ENABLE_ADDRSAN "Enable the address sanitizer" OFF)
|
||||||
option(ENABLE_UBSAN "Enable the ub sanitizer" OFF)
|
option(ENABLE_UBSAN "Enable the ub sanitizer" OFF)
|
||||||
|
|
|
@ -30,11 +30,11 @@ namespace blt::gp
|
||||||
{
|
{
|
||||||
};
|
};
|
||||||
|
|
||||||
template<typename Return, typename Args>
|
template<typename Return, typename... Args>
|
||||||
class operation
|
class operation
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
using function_t = std::function<Return(blt::span<Args>)>;
|
using function_t = std::function<Return(Args...)>;
|
||||||
|
|
||||||
operation(const operation& copy) = default;
|
operation(const operation& copy) = default;
|
||||||
|
|
||||||
|
@ -48,8 +48,8 @@ namespace blt::gp
|
||||||
func = functor;
|
func = functor;
|
||||||
} else
|
} else
|
||||||
{
|
{
|
||||||
func = [&functor](blt::span<Args> args) {
|
func = [&functor](Args... args) {
|
||||||
return functor(args);
|
return functor(args...);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -57,10 +57,26 @@ namespace blt::gp
|
||||||
explicit operation(function_t&& functor): func(std::move(functor))
|
explicit operation(function_t&& functor): func(std::move(functor))
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
inline Return operator()(Args... args)
|
||||||
|
{
|
||||||
|
return func(args...);
|
||||||
|
}
|
||||||
|
|
||||||
|
inline Return operator()(blt::span<void*> args)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
function_t func;
|
function_t func;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
template<typename Return, typename Args>
|
||||||
|
class operations
|
||||||
|
{
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue