Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 12 additions & 10 deletions source/containers.tex
Original file line number Diff line number Diff line change
Expand Up @@ -6444,8 +6444,8 @@
template<class T, class Allocator>
constexpr bool operator==(const deque<T, Allocator>& x, const deque<T, Allocator>& y);
template<class T, class Allocator>
constexpr @\placeholder{synth-three-way-result}@<T> operator<=>(const deque<T, Allocator>& x,
@\itcorr@ const deque<T, Allocator>& y);
constexpr @\placeholder{synth-three-way-result}@<T>
operator<=>(const deque<T, Allocator>& x, const deque<T, Allocator>& y);

template<class T, class Allocator>
constexpr void swap(deque<T, Allocator>& x, deque<T, Allocator>& y)
Expand Down Expand Up @@ -6940,8 +6940,9 @@
constexpr bool operator==(const forward_list<T, Allocator>& x,
const forward_list<T, Allocator>& y);
template<class T, class Allocator>
constexpr @\placeholder{synth-three-way-result}@<T> operator<=>(const forward_list<T, Allocator>& x,
@\itcorr@ const forward_list<T, Allocator>& y);
constexpr @\placeholder{synth-three-way-result}@<T>
operator<=>(const forward_list<T, Allocator>& x,
const forward_list<T, Allocator>& y);

template<class T, class Allocator>
constexpr void swap(forward_list<T, Allocator>& x, forward_list<T, Allocator>& y)
Expand Down Expand Up @@ -8994,8 +8995,8 @@
template<class T, class Allocator>
constexpr bool operator==(const list<T, Allocator>& x, const list<T, Allocator>& y);
template<class T, class Allocator>
constexpr @\placeholder{synth-three-way-result}@<T> operator<=>(const list<T, Allocator>& x,
@\itcorr@ const list<T, Allocator>& y);
constexpr @\placeholder{synth-three-way-result}@<T>
operator<=>(const list<T, Allocator>& x, const list<T, Allocator>& y);

template<class T, class Allocator>
constexpr void swap(list<T, Allocator>& x, list<T, Allocator>& y)
Expand Down Expand Up @@ -9787,8 +9788,8 @@
template<class T, class Allocator>
constexpr bool operator==(const vector<T, Allocator>& x, const vector<T, Allocator>& y);
template<class T, class Allocator>
constexpr @\placeholder{synth-three-way-result}@<T> operator<=>(const vector<T, Allocator>& x,
@\itcorr@ const vector<T, Allocator>& y);
constexpr @\placeholder{synth-three-way-result}@<T>
operator<=>(const vector<T, Allocator>& x, const vector<T, Allocator>& y);

template<class T, class Allocator>
constexpr void swap(vector<T, Allocator>& x, vector<T, Allocator>& y)
Expand Down Expand Up @@ -12585,8 +12586,9 @@
constexpr bool operator==(const set<Key, Compare, Allocator>& x,
const set<Key, Compare, Allocator>& y);
template<class Key, class Compare, class Allocator>
constexpr @\placeholder{synth-three-way-result}@<Key> operator<=>(const set<Key, Compare, Allocator>& x,
@\itcorr@ const set<Key, Compare, Allocator>& y);
constexpr @\placeholder{synth-three-way-result}@<Key>
operator<=>(const set<Key, Compare, Allocator>& x,
const set<Key, Compare, Allocator>& y);

template<class Key, class Compare, class Allocator>
constexpr void swap(set<Key, Compare, Allocator>& x,
Expand Down