GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::ranges::drop_view::drop_view(3) C++ Standard Libary std::ranges::drop_view::drop_view(3)

std::ranges::drop_view::drop_view - std::ranges::drop_view::drop_view


drop_view() requires std::default_initializable<V> = default; (1) (since C++20)
constexpr drop_view( V base, ranges::range_difference_t<V> count (2) (since C++20)
);


Constructs a drop_view.


1) Default constructor. Value-initializes the underlying view and initializes the
count to 0. After construction, base() returns a copy of V() and size() equals
to the size of the underlying view.
2) Initializes the underlying view with std::move(base) and the count with count.
After construction, base() returns a copy of base and size() returns
ranges::size(base) - count if the size of base is not less than count, or 0
otherwise.


base - the underlying view
count - number of elements to skip.

// Run this code


#include <algorithm>
#include <array>
#include <iostream>
#include <iterator>
#include <ranges>


int main()
{
constexpr std::array hi{ 'H','e','l','l','o',',',' ','C','+','+','2','0' };


std::ranges::for_each(hi, [](const char c){ std::cout << c; });
std::cout << '\n';


constexpr auto n = std::distance(hi.cbegin(), std::ranges::find(hi, 'C'));


auto cxx = std::ranges::drop_view{ hi, n };


std::ranges::for_each(cxx, [](const char c){ std::cout << c; });
std::cout << '\n';
}


Hello, C++20
C++20

2022.07.31 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.