folly::bind::in_place

Binds in-place construction of T from the given arguments.

Synopsis

Declared in <folly/lang/bind/Bind.h>

template<
    typename T,
    typename... As>
constexpr
auto
in_place(As&&... as);

Return Value

A bound-args list that constructs the target in place.

Parameters

NameDescription
asArguments forwarded to the constructor of the bound type.