|
| any_view (any_view &&)=default |
|
| any_view (any_view const &that) |
|
template<typename Rng > |
| any_view (Rng &&rng) requires(!defer |
|
any_view & | operator= (any_view &&)=default |
|
any_view & | operator= (any_view const &that) |
|
auto | size () -> std::size_t requires(category::sized==(Cat &category::sized)) |
|
constexpr auto | begin () -> detail::facade_iterator_t< D > requires same_as< D, any_view< Ref, category::input > > |
| Let d be static_cast<Derived &>(*this) . Let b be std::as_const(d).begin_cursor() if that expression is well-formed; otherwise, let b be d.begin_cursor() . Let B be the type of b . More...
|
|
constexpr auto | begin () const -> detail::facade_iterator_t< D const > requires same_as< D, any_view< Ref, category::input > > |
| This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
|
constexpr auto | end () -> detail::facade_sentinel_t< D > requires same_as< D, any_view< Ref, category::input > > |
| Let d be static_cast<Derived &>(*this) . Let e be std::as_const(d).end_cursor() if that expression is well-formed; otherwise, let e be d.end_cursor() . Let E be the type of e . More...
|
|
constexpr auto | end () const -> detail::facade_sentinel_t< D const > requires same_as< D, any_view< Ref, category::input > > |
| This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
|