Files
cppdraft_translate/cppdraft/range/repeat.md
2025-10-25 03:02:53 +03:00

16 KiB
Raw Blame History

[range.repeat]

25 Ranges library [ranges]

25.6 Range factories [range.factories]

25.6.5 Repeat view [range.repeat]

25.6.5.1 Overview [range.repeat.overview]

1

#

repeat_view generates a sequence of elements by repeatedly producing the same value.

2

#

The name views::repeat denotes a customization point object ([customization.point.object]).

Given subexpressions E and F, the expressions views::repeat(E) and views::repeat(E, F) are expression-equivalent torepeat_view<decay_t<decltype((E))>>(E) and repeat_view(E, F), respectively.

3

#

[Example 1: for (int i : views::repeat(17, 4)) cout << i << ' ';// prints 17 17 17 17 — end example]

25.6.5.2 Class template repeat_view [range.repeat.view]

namespace std::ranges {templateconcept integer-like-with-usable-difference-type = // exposition only**is-signed-integer-like || (is-integer-like && weakly_incrementable); template<move_constructible T, semiregular Bound = unreachable_sentinel_t>requires (is_object_v && same_as<T, remove_cv_t> &&(integer-like-with-usable-difference-type ||same_as<Bound, unreachable_sentinel_t>))class repeat_view : public view_interface<repeat_view<T, Bound>> {private:// [range.repeat.iterator], class repeat_view::iteratorstruct iterator; // exposition only**movable-box value_; // exposition only, see [range.move.wrap] Bound bound_ = Bound(); // exposition onlypublic: repeat_view() requires default_initializable = default; constexpr explicit repeat_view(const T& value, Bound bound = Bound())requires copy_constructible; constexpr explicit repeat_view(T&& value, Bound bound = Bound()); template<class... TArgs, class... BoundArgs>requires constructible_from<T, TArgs...> &&constructible_from<Bound, BoundArgs...>constexpr explicit repeat_view(piecewise_construct_t, tuple<TArgs...> value_args, tuple<BoundArgs...> bound_args = tuple<>{}); constexpr iterator begin() const; constexpr iterator end() const requires (same_as<Bound, unreachable_sentinel_t>); constexpr unreachable_sentinel_t end() const noexcept; constexpr auto size() const requires (same_as<Bound, unreachable_sentinel_t>); }; template<class T, class Bound = unreachable_sentinel_t> repeat_view(T, Bound = Bound()) -> repeat_view<T, Bound>;}

🔗

constexpr explicit repeat_view(const T& value, Bound bound = Bound()) requires [copy_constructible](concept.copyconstructible#concept:copy_constructible "18.4.14Concept copy_­constructible[concept.copyconstructible]")<T>;

1

#

Preconditions: If Bound is not unreachable_sentinel_t,bound ≥ 0.

2

#

Effects: Initializes value_ with value andbound_ with bound.

🔗

constexpr explicit repeat_view(T&& value, Bound bound = Bound());

3

#

Preconditions: If Bound is not unreachable_sentinel_t, bound ≥ 0.

4

#

Effects: Initializes value_ with std::move(value) andbound_ with bound.

🔗

template<class... TArgs, class... BoundArgs> requires [constructible_from](concept.constructible#concept:constructible_from "18.4.11Concept constructible_­from[concept.constructible]")<T, TArgs...> && [constructible_from](concept.constructible#concept:constructible_from "18.4.11Concept constructible_­from[concept.constructible]")<Bound, BoundArgs...> constexpr explicit repeat_view(piecewise_construct_t, tuple<TArgs...> value_args, tuple<BoundArgs...> bound_args = tuple<>{});

5

#

Effects: Initializes value_ withmake_from_tuple(std::move(value_args)) and initializes bound_ withmake_from_tuple(std::move(bound_args)).

The behavior is undefined ifBound is not unreachable_sentinel_t andbound_ is negative.

🔗

constexpr iterator begin() const;

6

#

Effects: Equivalent to: return iterator(addressof(**value_*));

🔗

constexpr iterator end() const requires (![same_as](concept.same#concept:same_as "18.4.2Concept same_­as[concept.same]")<Bound, unreachable_sentinel_t>);

7

#

Effects: Equivalent to: return iterator(addressof(**value_*), bound_);

🔗

constexpr unreachable_sentinel_t end() const noexcept;

8

#

Effects: Equivalent to: return unreachable_sentinel;

🔗

constexpr auto size() const requires (![same_as](concept.same#concept:same_as "18.4.2Concept same_­as[concept.same]")<Bound, unreachable_sentinel_t>);

9

#

Effects: Equivalent to: return to-unsigned-like(bound_);

25.6.5.3 Class repeat_view::iterator [range.repeat.iterator]

🔗

namespace std::ranges {template<move_constructible T, semiregular Bound>requires (is_object_v && same_as<T, remove_cv_t> &&(integer-like-with-usable-difference-type ||same_as<Bound, unreachable_sentinel_t>))class repeat_view<T, Bound>::iterator {private:using index-type = // exposition only conditional_t<same_as<Bound, unreachable_sentinel_t>, ptrdiff_t, Bound>; const T* value_ = nullptr; // exposition only**index-type current_ = index-type(); // exposition onlyconstexpr explicit iterator(const T* value, index-type b = index-type()); // exposition onlypublic:using iterator_concept = random_access_iterator_tag; using iterator_category = random_access_iterator_tag; using value_type = T; using difference_type = see below; iterator() = default; constexpr const T& operator*() const noexcept; constexpr iterator& operator++(); constexpr iterator operator++(int); constexpr iterator& operator--(); constexpr iterator operator--(int); constexpr iterator& operator+=(difference_type n); constexpr iterator& operator-=(difference_type n); constexpr const T& operator[](difference_type n) const noexcept; friend constexpr bool operator==(const iterator& x, const iterator& y); friend constexpr auto operator<=>(const iterator& x, const iterator& y); friend constexpr iterator operator+(iterator i, difference_type n); friend constexpr iterator operator+(difference_type n, iterator i); friend constexpr iterator operator-(iterator i, difference_type n); friend constexpr difference_type operator-(const iterator& x, const iterator& y); };}

1

#

If is-signed-integer-like<index-type> is true, the member typedef-name difference_type denotes index-type.

Otherwise, it denotes IOTA-DIFF-T(index-type) ([range.iota.view]).

🔗

constexpr explicit iterator(const T* value, index-type b = index-type());

2

#

Preconditions: If Bound is not unreachable_sentinel_t, b ≥ 0.

3

#

Effects: Initializes value_ with value andcurrent_ with b.

🔗

constexpr const T& operator*() const noexcept;

4

#

Effects: Equivalent to: return **value_*;

🔗

constexpr iterator& operator++();

5

#

Effects: Equivalent to:++current_;return *this;

🔗

constexpr iterator operator++(int);

6

#

Effects: Equivalent to:auto tmp = *this;++*this;return tmp;

🔗

constexpr iterator& operator--();

7

#

Preconditions: If Bound is not unreachable_sentinel_t,current_>0.

8

#

Effects: Equivalent to:--current_;return *this;

🔗

constexpr iterator operator--(int);

9

#

Effects: Equivalent to:auto tmp = *this;--*this;return tmp;

🔗

constexpr iterator& operator+=(difference_type n);

10

#

Preconditions: If Bound is not unreachable_sentinel_t,current_+n≥0.

11

#

Effects: Equivalent to:current_ += n;return *this;

🔗

constexpr iterator& operator-=(difference_type n);

12

#

Preconditions: If Bound is not unreachable_sentinel_t,current_−‰¥0.

13

#

Effects: Equivalent to:current_ -= n;return *this;

🔗

constexpr const T& operator[](difference_type n) const noexcept;

14

#

Effects: Equivalent to: return *(*this + n);

🔗

friend constexpr bool operator==(const iterator& x, const iterator& y);

15

#

Effects: Equivalent to: return x.current_ == y.current_;

🔗

friend constexpr auto operator<=>(const iterator& x, const iterator& y);

16

#

Effects: Equivalent to: return x.current_ <=> y.current_;

🔗

friend constexpr iterator operator+(iterator i, difference_type n); friend constexpr iterator operator+(difference_type n, iterator i);

17

#

Effects: Equivalent to:i += n;return i;

🔗

friend constexpr iterator operator-(iterator i, difference_type n);

18

#

Effects: Equivalent to:i -= n;return i;

🔗

friend constexpr difference_type operator-(const iterator& x, const iterator& y);

19

#

Effects: Equivalent to:return static_cast<difference_type>(x.current_) - static_cast<difference_type>(y.current_);