BloombergLP::bslstl::Function_InvokerUtil::invokerForFunc

invokerForFunc overloads

Synopses

Declared in <bslstl_function_invokerutil.h>

Return a null pointer. Note that template argument PROTOTYPE must be supplied excplicitly, as there is no way to deduce it from the function arguments.

template<class PROTOTYPE>
static
bslstl::Function_InvokerUtil::GenericInvoker*
invokerForFunc(bsl::nullptr_t const&);
» more...

Return a pointer to the invoker for a callable object of (template paramter) type FUNC. If the specified f object is a null pointer or null pointer-to-member, return a null pointer. Note that template argument PROTOTYPE must be supplied excplicitly, as there is no way to deduce it from the function arguments.

template<
    class PROTOTYPE,
    class FUNC>
static
bslstl::Function_InvokerUtil::GenericInvoker*
invokerForFunc(FUNC const& f);
» more...