[#BloombergLP-bdlf-Overloaded_NoexceptFunctionPointer] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlf.adoc[bdlf]::Overloaded_NoexceptFunctionPointer :relfileprefix: ../../ :mrdocs: Overloaded_NoexceptFunctionPointer wraps a function pointer. It is implicitly constructible from the pointer, and provides an `operator()` method that calls through to the underlying function. == Synopsis Declared in `<bdlf_overloaded.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< class RET, class... ARGS> struct Overloaded_NoexceptFunctionPointer; ---- == Type Aliases [cols="1,4"] |=== | Name| Description | xref:BloombergLP/bdlf/Overloaded_NoexceptFunctionPointer/FpType.adoc[`FpType`] | Alias for a free function pointer of the given signature. |=== == Member Functions [cols="1,4"] |=== | Name| Description | xref:BloombergLP/bdlf/Overloaded_NoexceptFunctionPointer/2constructor.adoc[`Overloaded_NoexceptFunctionPointer`] [.small]#[constructor]# | Construct this object from the specified `f`. | xref:BloombergLP/bdlf/Overloaded_NoexceptFunctionPointer/operator_call.adoc[`operator()`] | Call the function passed to the constructor with the specified `args`. |=== == Data Members [cols="1,4"] |=== | Name| Description | xref:BloombergLP/bdlf/Overloaded_NoexceptFunctionPointer/d_fp.adoc[`d_fp`] | Free function pointer of the given signature. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#