Skip to content
This repository was archived by the owner on Jan 5, 2025. It is now read-only.

Changes for commity #14

Open
wants to merge 17 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
wording: same-as-any-of -> same-as-one-of
it just seems more correct
  • Loading branch information
Ran Regev authored and Ran Regev committed Mar 11, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 89ff564f74f89a2ffe79bd382f27270d392417d2
8 changes: 4 additions & 4 deletions P2022/P2022R0.md
Original file line number Diff line number Diff line change
@@ -40,7 +40,7 @@ that the given range is unsortable.

> ::: add
> | template <typename T, typename... U>
> | concept same-as-any-of = (same_as<T, U> or ...); // exposition only
> | concept same-as-one-of = (same_as<T, U> or ...); // exposition only
> |
> | template<
> | input_iterator I1,
@@ -57,7 +57,7 @@ that the given range is unsortable.
> | >; // exposition-only
> |
> | constexpr bool is-lexicographical-compare-three-way-result-ordering =
> | same-as-any-of<
> | same-as-one-of<
> | lexicographical-compare-three-way-result-t<
> | I1, I2, Comp, Proj1, Proj2
> | >,
@@ -125,7 +125,7 @@ that the given range is unsortable.

> ::: add
> | template <typename T, typename... U>
> | concept same-as-any-of = (same_as<T, U> or ...); // exposition only
> | concept same-as-one-of = (same_as<T, U> or ...); // exposition only
> |
> | template<
> | input_iterator I1,
@@ -142,7 +142,7 @@ that the given range is unsortable.
> | >; // exposition-only
> |
> | constexpr bool is-lexicographical-compare-three-way-result-ordering =
> | same-as-any-of<
> | same-as-one-of<
> | lexicographical-compare-three-way-result-t<
> | I1, I2, Comp, Proj1, Proj2
> | >,