Invoke the shared binder with 12 arguments.

Synopsis

Declared in <bdlf_bind.h>

template<
    class P1,
    class P2,
    class P3,
    class P4,
    class P5,
    class P6,
    class P7,
    class P8,
    class P9,
    class P10,
    class P11,
    class P12>
ResultType
operator()(
    P1& p1,
    P2& p2,
    P3& p3,
    P4& p4,
    P5& p5,
    P6& p6,
    P7& p7,
    P8& p8,
    P9& p9,
    P10& p10,
    P11& p11,
    P12& p12) const;

Description

Invoke the bound object using the invocation template provided at construction of this bdlf::Bind object, substituting place‐holders for arguments 1 ‐ 12 with the values of the specified arguments p1p12 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

p5

invocation argument 5

p6

invocation argument 6

p7

invocation argument 7

p8

invocation argument 8

p9

invocation argument 9

p10

invocation argument 10

p11

invocation argument 11

p12

invocation argument 12

Created with MrDocs