Invoke the shared binder with 4 arguments.
Synopsis
Declared in <bdlf_bind.h>
template<
class P1,
class P2,
class P3,
class P4>
ResultType
operator()(
P1& p1,
P2& p2,
P3& p3,
P4& p4) const;
Description
Invoke the bound object using the invocation template provided at construction of this bdlf::Bind object, substituting place‐holders for arguments 1 ‐ 4 with the values of the specified arguments p1 ‐ p4 respectively. Return the result.
Return Value
result of invoking the bound object
Parameters
Name |
Description |
p1 |
invocation argument 1 |
p2 |
invocation argument 2 |
p3 |
invocation argument 3 |
p4 |
invocation argument 4 |
Created with MrDocs