fix(iterator): fix CReferenceable being mistakenly written as CReference

This commit is contained in:
Redstone1024 2024-12-14 14:12:07 +08:00
parent 5cfde63dd4
commit c73fc7620d
4 changed files with 5 additions and 5 deletions

View File

@ -28,7 +28,7 @@ concept CBidirectionalIterator = CForwardIterator<I>
* Regardless of the order in which the increment and decrement operators are applied,
* the result is always the same if both operations are performed the same number of times.
*/
template <CReference T>
template <CReferenceable T>
struct IBidirectionalIterator /* : IForwardIterator<T> */
{
// ~Begin CForwardIterator.

View File

@ -19,7 +19,7 @@ template <typename I>
concept CForwardIterator = CInputIterator<I> && CIncrementable<I> && CSentinelFor<I, I>;
/** This is an example of a forward iterator, indicate the traits that define a forward iterator. */
template <CReference T>
template <CReferenceable T>
struct IForwardIterator /* : IInputIterator<T>, IIncrementable, ISentinelFor<IForwardIterator> */
{
// ~Begin CInputIterator.

View File

@ -32,7 +32,7 @@ concept CRandomAccessIterator = CBidirectionalIterator<I> && CTotallyOrdered<I>
};
/** This is an example of a random access iterator, indicate the traits that define a random access iterator. */
template <CReference T>
template <CReferenceable T>
struct IRandomAccessIterator /* : IBidirectionalIterator<T>, ISizedSentinelFor<IRandomAccessIterator> */
{
// ~Begin CBidirectionalIterator.

View File

@ -107,7 +107,7 @@ concept CIndirectlyWritable =
};
/** This is an example of an indirectly writable type, indicate the traits that define an indirectly writable type. */
template <CReference T>
template <CReferenceable T>
struct IIndirectlyWritable
{
/**
@ -262,7 +262,7 @@ concept COutputIterator = CInputOrOutputIterator<I> && CIndirectlyWritable<I, T>
&& requires(I Iter) { { Iter++ } -> CIndirectlyWritable<T>; };
/** This is an example of an output iterator, indicate the traits that define an output iterator. */
template <CReference T>
template <CReferenceable T>
struct IOutputIterator /* : IInputOrOutputIterator, IIndirectlyWritable<T> */
{
// ~Begin CIndirectlyWritable.