Function bind_expression¶
function bind_expression(Fn &&, Args &&...) base¶
template <typename Fn, typename... Args>
KFR_FUNCTION expression_function<std::decay_t<Fn>, Args...> bind_expression(Fn&& fn, Args&&... args) Constructs an expression_function from a callable and arguments.
| fn | Callable to apply. |
| args | Arguments to bind to the expression. |
| Fn | Callable type. |
| Args | Argument types. |
A new expression_function holding fn and args. |
Fully qualified name: kfr::bind_expression(Fn &&, Args &&...)
Declared at base/expression.hpp:1384
This file was generated by cxxdox, a C++ documentation generator based on MkDocs Material and libclang.