2
0
mirror of https://github.com/boostorg/process.git synced 2026-01-27 07:02:13 +00:00
Files
process/doc/reference/bind_launcher.adoc
Klemens Morgenstern a6f2a1d005 windows fixes.
2024-12-20 20:53:29 +08:00

17 lines
500 B
Plaintext

== `bind_launcher.hpp`
The `bind_launcher` utlitities allow on the fly construction of a launcher with bound initializers.
[source,cpp]
----
// Creates a new launcher with the bound initializer.
template<typename Launcher, typename ... Init>
auto bind_launcher(Launcher && launcher, Init && ... init);
// Calls bind_launcher with the default_launcher as the first parameter.
// The new launcher with bound paramaters
template<typename ... Init>
auto bind_default_launcher(Init && ... init);
----