template<class T>
constexpr empty_view<T> empty{};
A range factory that produces a
view
of no elements of a particular type.
2) Variable template for empty_view
.
std::ranges::view_interface<D>
) [edit] returns a sentinel for the constant iterator of the range
std::ranges::view_interface<D>
) [edit] returns whether the derived view is not empty, provided only if ranges::empty is applicable to it
std::ranges::view_interface<D>
) [edit] returns the first element in the derived view, provided if it satisfies forward_range
std::ranges::view_interface<D>
) [edit] returns the last element in the derived view, provided only if it satisfies bidirectional_range
and common_range
std::ranges::view_interface<D>
) [edit] returns the n
th element in the derived view, provided only if it satisfies random_access_range
std::ranges::view_interface<D>
) [edit] std::ranges::empty_view::begin
static constexpr T* begin() noexcept { return nullptr; }
(since C++20)empty_view
does not reference any element.
static constexpr T* end() noexcept { return nullptr; }
(since C++20)empty_view
does not reference any element.
static constexpr T* data() noexcept { return nullptr; }
(since C++20)empty_view
does not reference any element.
empty_view
is always empty.
static constexpr bool empty() noexcept { return true; }
(since C++20)empty_view
is always empty.
This specialization of ranges::enable_borrowed_range makes empty_view
satisfy borrowed_range
.
Although empty_view
obtains front
, back
, and operator[] member functions from view_interface
, calls to them always result in undefined behavior since an empty_view
is always empty.
The inherited operator bool conversion function always returns false.
[edit] Example#include <ranges> int main() { namespace ranges = std::ranges; ranges::empty_view<long> e; static_assert(ranges::empty(e)); // uses operator bool static_assert(0 == e.size()); static_assert(nullptr == e.data()); static_assert(nullptr == e.begin()); static_assert(nullptr == e.end()); static_assert(nullptr == e.cbegin()); static_assert(nullptr == e.cend()); }[edit] See also
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4