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