conversion from pair (5) | template <class U1, class U2> tuple (const pair<U1,U2>& pr);template <class U1, class U2> tuple (pair<U1,U2>&& pr); |
---|
allocator (6) | template<class Alloc> tuple (allocator_arg_t aa, const Alloc& alloc);template<class Alloc> tuple (allocator_arg_t aa, const Alloc& alloc, const tuple& tpl);template<class Alloc> tuple (allocator_arg_t aa, const Alloc& alloc, tuple&& tpl);template<class Alloc,class... UTypes> tuple (allocator_arg_t aa, const Alloc& alloc, const tuple<UTypes...>& tpl);template<class Alloc, class... UTypes> tuple (allocator_arg_t aa, const Alloc& alloc, tuple<UTypes...>&& tpl);template<class Alloc> tuple (allocator_arg_t aa, const Alloc& alloc, const Types&... elems);template<class Alloc, class... UTypes> tuple (allocator_arg_t aa, const Alloc& alloc, UTypes&&... elems);template<class Alloc, class U1, class U2> tuple (allocator_arg_t aa, const Alloc& alloc, const pair<U1,U2>& pr);template<class Alloc, class U1, class U2> tuple (allocator_arg_t aa, const Alloc& alloc, pair<U1,U2>&& pr); |
---|