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...);
};
}
}