template<typename R>
class vccc::ranges::ref_view< R >
ref_view is a view of the elements of some other range. It wraps a reference to that range.
|
| template<typename T , std::enable_if_t< conjunction< different_from< T, ref_view >, convertible_to< T, R & >, std::is_lvalue_reference< T && > >::value, int > = 0> |
| VCCC_ADDRESSOF_CONSTEXPR | ref_view (T &&t) noexcept |
| |
| constexpr R & | base () const |
| |
| constexpr iterator_t< R > | begin () const |
| |
| constexpr sentinel_t< R > | end () const |
| |
| template<typename T = R, std::enable_if_t< is_invocable< decltype(ranges::empty), T & >::value, int > = 0> |
| constexpr bool | empty () const |
| |
| template<typename T = R, std::enable_if_t< sized_range< T >::value, int > = 0> |
| constexpr auto | size () const |
| |
| template<typename T = R, std::enable_if_t< contiguous_range< T >::value, int > = 0> |
| constexpr auto | data () const |
| |
| constexpr bool | empty () |
| |
| constexpr bool | empty () |
| |
| constexpr bool | empty () const |
| |
| constexpr bool | empty () const |
| |
| constexpr auto | cbegin () |
| |
| constexpr auto | cbegin () const |
| |
| constexpr auto | cend () |
| |
| constexpr auto | cend () const |
| |
| constexpr | operator bool () |
| |
| constexpr | operator bool () const |
| |
| constexpr auto | data () |
| |
| constexpr auto | data () const |
| |
| constexpr auto | size () |
| |
| constexpr auto | size () const |
| |
| constexpr decltype(auto) | front () |
| |
| constexpr decltype(auto) | front () const |
| |
| constexpr decltype(auto) | back () |
| |
| constexpr decltype(auto) | back () const |
| |
| constexpr decltype(auto) | operator[] (range_difference_t< R > n) |
| |
| constexpr decltype(auto) | operator[] (range_difference_t< R > n) const |
| |