Home | History | Annotate | Download | only in debug

Lines Matching defs:multiset

1 // Debugging multiset implementation -*- C++ -*-
26 /** @file debug/multiset.h
43 class multiset
44 : public _GLIBCXX_STD_D::multiset<_Key, _Compare, _Allocator>,
45 public __gnu_debug::_Safe_sequence<multiset<_Key, _Compare, _Allocator> >
47 typedef _GLIBCXX_STD_D::multiset<_Key, _Compare, _Allocator> _Base;
48 typedef __gnu_debug::_Safe_sequence<multiset> _Safe_base;
60 typedef __gnu_debug::_Safe_iterator<typename _Base::iterator, multiset>
63 multiset> const_iterator;
73 explicit multiset(const _Compare& __comp = _Compare(),
78 multiset(_InputIterator __first, _InputIterator __last,
84 multiset(const multiset& __x)
87 multiset(const _Base& __x)
91 multiset(multiset&& __x)
92 : _Base(std::forward<multiset>(__x)), _Safe_base()
95 multiset(initializer_list<value_type> __l,
101 ~multiset() { }
103 multiset&
104 operator=(const multiset& __x)
112 multiset&
113 operator=(multiset&& __x)
121 multiset&
249 swap(multiset&& __x)
251 swap(multiset& __x)
266 // multiset operations:
339 operator==(const multiset<_Key, _Compare, _Allocator>& __lhs,
340 const multiset<_Key, _Compare, _Allocator>& __rhs)
345 operator!=(const multiset<_Key, _Compare, _Allocator>& __lhs,
346 const multiset<_Key, _Compare, _Allocator>& __rhs)
351 operator<(const multiset<_Key, _Compare, _Allocator>& __lhs,
352 const multiset<_Key, _Compare, _Allocator>& __rhs)
357 operator<=(const multiset<_Key, _Compare, _Allocator>& __lhs,
358 const multiset<_Key, _Compare, _Allocator>& __rhs)
363 operator>=(const multiset<_Key, _Compare, _Allocator>& __lhs,
364 const multiset<_Key, _Compare, _Allocator>& __rhs)
369 operator>(const multiset<_Key, _Compare, _Allocator>& __lhs,
370 const multiset<_Key, _Compare, _Allocator>& __rhs)
375 swap(multiset<_Key, _Compare, _Allocator>& __x,
376 multiset<_Key, _Compare, _Allocator>& __y)
382 swap(multiset<_Key, _Compare, _Allocator>&& __x,
383 multiset<_Key, _Compare, _Allocator>& __y)
388 swap(multiset<_Key, _Compare, _Allocator>& __x,
389 multiset<_Key, _Compare, _Allocator>&& __y)