std::uses_allocator (3) Linux Manual Page
std::uses_allocator<std::tuple> – std::uses_allocator<std::tuple>
Synopsis
Defined in header<tuple>
template <class... Types, class Alloc>
(since C++ 11)
struct uses_allocator<std::tuple<Types...>, Alloc> : std::true_type {
};
This specialization of std::uses_allocator informs other library components that tuples support uses-allocator construction, even though they do not have a nested allocator_type.
Inherited from std::integral_constant
Member constants
value true
[static]
Member functions
operator bool (public member function)
operator() returns value
(C++14)
Member types
Type Definition
value_type bool
type std::integral_constant<bool, value>
Example
// Run this code
See also
uses_allocator checks if the specified type supports uses-allocator construction
(C++11)
