[#BloombergLP-bdlf-BindWrapper-operator_call-08d] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlf.adoc[bdlf]::xref:BloombergLP/bdlf/BindWrapper.adoc[BindWrapper]::operator() :relfileprefix: ../../../ :mrdocs: Invoke the shared binder with 3 arguments. == Synopsis Declared in `<bdlf_bind.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< class P1, class P2, class P3> xref:BloombergLP/bdlf/BindWrapper/ResultType.adoc[ResultType] operator()( P1& p1, P2& p2, P3& p3) const; ---- == Description Invoke the bound object using the invocation template provided at construction of this `bdlf::Bind` object, substituting place‐holders for arguments 1, 2, and 3 with the values of the specified arguments `p1`, `p2` and `p3` respectively. Return the result. == Return Value result of invoking the bound object == Parameters [cols="1,4"] |=== | Name| Description | *p1* | invocation argument 1 | *p2* | invocation argument 2 | *p3* | invocation argument 3 |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#