General Purpose library for Freestanding C++ and POSIX systems
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 

18 行
370 B

#pragma once
#include <gp/algorithms/move.hpp>
#include <gp/algorithms/cvref.hpp>
#include <gp/algorithms/reference.hpp>
#include <type_traits>
namespace gp {
// TODO: this goes into functional
template<typename F, typename ... Args>
auto bind_front(F&& func, Args&&... arg_parent)
{
return [=](auto&&... argv){
return func(arg_parent..., argv...);
};
}
}