Provided by: libstdc++-13-doc_13-20230320-1ubuntu1_all bug

NAME

       std::ranges::view_interface< _Derived > - The ranges::view_interface class template.

SYNOPSIS

       #include <ranges>

   Public Member Functions
       constexpr decltype(auto) back ()
       constexpr decltype(auto) back () const
       constexpr auto data () const noexcept(noexcept(ranges::begin(_M_derived())))
       constexpr auto data () noexcept(noexcept(ranges::begin(_M_derived())))
       constexpr bool empty () const noexcept(noexcept(_S_empty(_M_derived())))
       constexpr bool empty () const noexcept(noexcept(ranges::size(_M_derived())==0))
       constexpr bool empty () noexcept(noexcept(_S_empty(_M_derived())))
       constexpr bool empty () noexcept(noexcept(ranges::size(_M_derived())==0))
       constexpr decltype(auto) front ()
       constexpr decltype(auto) front () const
       constexpr operator bool () const noexcept(noexcept(ranges::empty(_M_derived())))
       constexpr operator bool () noexcept(noexcept(ranges::empty(_M_derived())))
       template<random_access_range _Range = _Derived> constexpr decltype(auto) operator[]
           (range_difference_t< _Range > __n)
       template<random_access_range _Range = const _Derived> constexpr decltype(auto) operator[]
           (range_difference_t< _Range > __n) const
       constexpr auto size () const noexcept(noexcept(_S_size(_M_derived())))
       constexpr auto size () noexcept(noexcept(_S_size(_M_derived())))

Detailed Description

   template<typename _Derived>
       requires is_class_v<_Derived> && same_as<_Derived, remove_cv_t<_Derived>>
       class std::ranges::view_interface< _Derived >"The ranges::view_interface class template.

       Definition at line 64 of file ranges.

Member Function Documentation

   template<typename _Derived > constexpr decltype(auto) std::ranges::view_interface< _Derived
       >::back () [inline],  [constexpr]
       Definition at line 170 of file ranges.

   template<typename _Derived > constexpr decltype(auto) std::ranges::view_interface< _Derived
       >::back () const [inline],  [constexpr]
       Definition at line 178 of file ranges.

   template<typename _Derived > constexpr auto std::ranges::view_interface< _Derived >::data ()
       const [inline],  [constexpr],  [noexcept]
       Definition at line 137 of file ranges.

   template<typename _Derived > constexpr auto std::ranges::view_interface< _Derived >::data ()
       [inline],  [constexpr],  [noexcept]
       Definition at line 132 of file ranges.

   template<typename _Derived > constexpr bool std::ranges::view_interface< _Derived >::empty ()
       const [inline],  [constexpr],  [noexcept]
       Definition at line 110 of file ranges.

   template<typename _Derived > constexpr bool std::ranges::view_interface< _Derived >::empty ()
       const [inline],  [constexpr],  [noexcept]
       Definition at line 116 of file ranges.

   template<typename _Derived > constexpr bool std::ranges::view_interface< _Derived >::empty ()
       [inline],  [constexpr],  [noexcept]
       Definition at line 98 of file ranges.

   template<typename _Derived > constexpr bool std::ranges::view_interface< _Derived >::empty ()
       [inline],  [constexpr],  [noexcept]
       Definition at line 104 of file ranges.

   template<typename _Derived > constexpr decltype(auto) std::ranges::view_interface< _Derived
       >::front () [inline],  [constexpr]
       Definition at line 156 of file ranges.

   template<typename _Derived > constexpr decltype(auto) std::ranges::view_interface< _Derived
       >::front () const [inline],  [constexpr]
       Definition at line 163 of file ranges.

   template<typename _Derived > constexpr std::ranges::view_interface< _Derived >::operator bool
       () const [inline],  [explicit],  [constexpr],  [noexcept]
       Definition at line 127 of file ranges.

   template<typename _Derived > constexpr std::ranges::view_interface< _Derived >::operator bool
       () [inline],  [explicit],  [constexpr],  [noexcept]
       Definition at line 122 of file ranges.

   template<typename _Derived > template<random_access_range _Range = _Derived> constexpr
       decltype(auto) std::ranges::view_interface< _Derived >::operator[] (range_difference_t<
       _Range > __n) [inline],  [constexpr]
       Definition at line 188 of file ranges.

   template<typename _Derived > template<random_access_range _Range = const _Derived> constexpr
       decltype(auto) std::ranges::view_interface< _Derived >::operator[] (range_difference_t<
       _Range > __n) const [inline],  [constexpr]
       Definition at line 193 of file ranges.

   template<typename _Derived > constexpr auto std::ranges::view_interface< _Derived >::size ()
       const [inline],  [constexpr],  [noexcept]
       Definition at line 149 of file ranges.

   template<typename _Derived > constexpr auto std::ranges::view_interface< _Derived >::size ()
       [inline],  [constexpr],  [noexcept]
       Definition at line 143 of file ranges.

Author

       Generated automatically by Doxygen for libstdc++ from the source code.

libstdc++                                Mon Mar 20 std::ranges::view_interface< _Derived >(3cxx)