std::uses_allocator<std::experimental::function>

Header: <experimental/functional>

This specialization of std::uses_allocator informs other library components that all objects of type std::experimental::function support uses-allocator construction.

# Declarations

template< class R, class... ArgTypes, class Alloc >
struct uses_allocator<std::experimental::function<R(ArgTypes...)>, Alloc>
: std::true_type {};

(library fundamentals TS) (removed in library fundamentals TS v3)

# See also