std::experimental::function<R(Args...)>::function
function( F f );
function( std::allocator_arg_t, const Alloc& alloc ) noexcept;
const allocator_type& alloc ) noexcept;
function( std::allocator_arg_t, const Alloc& alloc,
std::nullptr_t ) noexcept;
function( std::allocator_arg_t, const Alloc& alloc,
const function& other );
function( std::allocator_arg_t, const Alloc& alloc,
function&& other );
function( std::allocator_arg_t, const Alloc& alloc, F f );
Constructs a std::experimental::function
from a variety of sources.
Args...
and return type R
.function
might use. These constructors treat alloc as a type-erased allocator (see below).(until library fundamentals TS v3)After construction via (1-5), this->get_memory_resource() returns the same value as std::experimental::pmr::get_default_resource () during construction.
(library fundamentals TS)(until library fundamentals TS v3)
After construction via (1-3) and (5), *this stores a default constructed std::pmr::polymorphic_allocator <>.
(library fundamentals TS v3)When the target is a function pointer or a std::reference_wrapper , small object optimization is guaranteed, that is, these targets are always directly stored inside the std::experimental::function object, no dynamic allocation takes place. Other large objects may be constructed in dynamic allocated storage and accessed by the std::experimental::function object through a pointer.
If a constructor moves or copies a function object, including an instance of std::experimental::function
, then that move or copy is performed by using-allocator construction with allocator this->get_memory_resource()(until library fundamentals TS v3)this->get_allocator()(library fundamentals TS v3).
[edit] Type-erased allocator
The constructors of function
taking an allocator argument alloc
treats that argument as a type-erased allocator. The memory resource pointer used by function
to allocate memory is determined using the allocator argument (if specified) as follows:
alloc
Value of the memory resource pointer
std::experimental::pmr::memory_resource * static_cast<std::experimental::pmr::memory_resource *>(alloc)
A
is the type of alloc
. The pointer remains valid only for the lifetime of the function
object.
[edit] Parameters
[edit] Exceptions
[edit] Example
Reason: no example