template<typename R>
class vccc::ranges::owning_view< R >
owning_view is a view that has unique ownership of a range. It is move-only and stores that range within it.
|
| constexpr | owning_view ()=default |
| |
| constexpr | owning_view (owning_view &&)=default |
| |
| constexpr | owning_view (const owning_view &)=delete |
| |
| constexpr | owning_view (R &&t) noexcept(std::is_nothrow_move_constructible< R >::value) |
| |
| owning_view & | operator= (owning_view &&)=default |
| |
| owning_view & | operator= (const owning_view &)=delete |
| |
| constexpr R & | base () &noexcept |
| |
| constexpr const R & | base () const &noexcept |
| |
| constexpr R && | base () &&noexcept |
| |
| constexpr const R && | base () const &&noexcept |
| |
| template<typename T = R> |
| constexpr iterator_t< T > | begin () |
| |
| template<typename T = R, std::enable_if_t< range< const T >::value, int > = 0> |
| constexpr auto | begin () const |
| |
| template<typename T = R> |
| constexpr sentinel_t< T > | end () |
| |
| template<typename T = R, std::enable_if_t< range< const T >::value, int > = 0> |
| constexpr auto | end () const |
| |
| template<typename T = R, std::enable_if_t< is_invocable< decltype(ranges::end), T & >::value, int > = 0> |
| constexpr bool | empty () |
| |
| template<typename T = R, std::enable_if_t< is_invocable< decltype(ranges::end), const 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 () |
| |
| template<typename T = R, std::enable_if_t< sized_range< const 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 () |
| |
| template<typename T = R, std::enable_if_t< contiguous_range< const 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 |
| |