id stringlengths 16 145 | text stringlengths 1 179k | title stringclasses 1
value |
|---|---|---|
C++_Ranges_library/C++_Ranges_library_154_7.txt | te_random ](/w/cpp/algorithm/ranges/generate_random
"cpp/algorithm/ranges/generate random") (C++26)
[ Return types ](/w/cpp/algorithm/ranges#Return_types "cpp/algorithm/ranges")
| [ ranges::in_fun_result
](/w/cpp/algorithm/ranges/return_types/in_fun_result
"cpp/algorithm/ranges/return types/in fun result")
--- ... | |
C++_Ranges_library/C++_Ranges_library_25_0.txt | ##### [ cppreference.com ](/)
[ Log in
](/mwiki/index.php?title=Special:UserLogin&returnto=cpp%2Franges%2Ftake+view
"You are encouraged to log in; however, it is not mandatory \[o\]")
##### Namespaces
* [ Page ](/w/cpp/ranges/take_view "View the content page \[c\]")
* [ Discussion ](/mwiki/index.php?title=Talk... | |
C++_Ranges_library/C++_Ranges_library_59_53.txt | template<forward_range V, size_t N>
requires view<V> && (N > 0)
class adjacent_view : public view_interface<adjacent_view<V, N>> {
V base_ = V(); // exposition only
// class template adjacent_view::iterator
template<bool> class iterator; // expo... | |
C++_Ranges_library/C++_Ranges_library_15_4.txt | cases.
The C++20 standard requires that if the underlying ` begin ` function call
returns a prvalue, the return value is move-constructed from the materialized
temporary object. All implementations directly return the prvalue instead. The
requirement is corrected by the post-C++20 proposal [ P0849R8
](https://wg21.lin... | |
C++_Ranges_library/C++_Ranges_library_57_36.txt | or/end)(cxx11_core), add);
if (print.cxx98) [std::for_each](http://en.cppreference.com/w/cpp/algorithm/for_each)([std::begin](http://en.cppreference.com/w/cpp/iterator/begin)(cxx98_core), [std::end](http://en.cppreference.com/w/cpp/iterator/end)(cxx98_core), add);
[std::snprintf](http://en.cppre... | |
C++_Ranges_library/C++_Ranges_library_7_7.txt | [ [edit]
](https://en.cppreference.com/mwiki/index.php?title=Template:cpp/ranges/dsc_owning_view&action=edit)
[ ranges::filter_view views::filter ](/w/cpp/ranges/filter_view "cpp/ranges/filter view") (C++20) | a [ ` view ` ](/w/cpp/ranges/view "cpp/ranges/view") that consists of the elements of a [ ` range ` ](... | |
C++_Ranges_library/C++_Ranges_library_9_14.txt | ru.cppreference.com/w/cpp/ranges "cpp/ranges")
* [ 中文 ](http://zh.cppreference.com/w/cpp/ranges "cpp/ranges")
* This page was last modified on 23 March 2024, at 06:26.
* This page has been accessed 999,598 times.
* [ Privacy policy ](/w/Cppreference:Privacy_policy "Cppreference:Privacy policy")
* [ About ... | |
C++_Ranges_library/C++_Ranges_library_55_3.txt | st ](/w/cpp/utility/initializer_list
"cpp/utility/initializer list") .
## Contents
* 1 Data members
* 2 Member functions
* 2.1 Inherited from std::ranges::view_interface
* 3 std::ranges::owning_view:: owning_view
* 3.1 Parameters
* 4 std::ranges::owning_view:: operator=
* 4.1 Para... | |
C++_Ranges_library/param-pack.html4_7_0.txt | ## Expanding parameter packs
A captured parameter pack must be used in a pattern that is expanded with
an ellipsis ( ` ... ` ). A pattern is a set of tokens containing the
identifiers of one or more parameter packs. When a pattern contains more than
one parameter pack, all packs must have the same length. This le... | |
C++_Ranges_library/C++_Ranges_library_137_1.txt | rator_t "cpp/ranges/iterator t") (C++23) (C++23)
---
| [ range_const_reference_t range_rvalue_reference_t
range_common_reference_t ](/w/cpp/ranges/iterator_t "cpp/ranges/iterator t")
(C++23)
---
| [ elements_of ](/w/cpp/ranges/elements_of "cpp/ranges/elements of")
(C++23)
---
... | |
C++_Ranges_library/C++_Ranges_library_56_27.txt | al_compare<>() ` ](/w/cpp/algorithm/lexicographical_compare
"cpp/algorithm/lexicographical compare")
[ ` lexicographical_compare_three_way<>() `
](/w/cpp/algorithm/lexicographical_compare_three_way
"cpp/algorithm/lexicographical compare three way") (since C++20)
[ ` lgamma() ` ](/w/cpp/numeric/math/lgamma "cpp/nume... | |
C++_Ranges_library/C++_Ranges_library_136_20.txt | 0307R2 ](https://wg21.link/P0307R2)
Fully ` constexpr ` [ std::optional ](/w/cpp/utility/optional "cpp/utility/optional") | 202106L | [ ` <optional> ` ](/w/cpp/header/optional "cpp/header/optional") | (C++20)
(DR) | [ P2231R1 ](https://wg21.link/P2231R1)
[ Monadic operations ](/w/cpp/utility/optional#Mona... | |
C++_Ranges_library/checking-cin-input-stream-produces-an-integer9_30_0.txt | Sep 10, 2013 at 21:06
* ` 'a' ` is still an integer value. You could check if the value is in the ASCII range of numbers which is ` 0x30-0x39 ` | |
C++_Ranges_library/C++_Ranges_library_62_0.txt | ##### [ cppreference.com ](/)
[ Log in
](/mwiki/index.php?title=Special:UserLogin&returnto=cpp%2Franges%2Fborrowed+iterator+t
"You are encouraged to log in; however, it is not mandatory \[o\]")
##### Namespaces
* [ Page ](/w/cpp/ranges/borrowed_iterator_t "View the content page \[c\]")
* [ Discussion ](/mwiki/... | |
C++_Ranges_library/C++_Ranges_library_59_47.txt | to begin() requires(!__simple_view<V>) {
return iterator<false>([ranges::begin](http://en.cppreference.com/w/cpp/ranges-ranges-placeholder/begin)(base_), 0);
}
constexpr auto begin() const requires __range_with_movable_references<const V> {
return iterator<true>([ranges::begin](http://en.cpp... | |
C++_Ranges_library/what-will-be-the-output-of-the-following-c-code--5ab8a41bc56b6664bc9bacdd8_23_0.txt | for ( i=0; i<5; i++ ) //this loop runs 5 times
{ | |
C++_Ranges_library/C++_Ranges_library_146_1.txt | const_iterator_t sentinel_t const_sentinel_t
](/w/cpp/ranges/iterator_t "cpp/ranges/iterator t") (C++23) (C++23)
---
| [ range_const_reference_t range_rvalue_reference_t
range_common_reference_t ](/w/cpp/ranges/iterator_t "cpp/ranges/iterator t")
(C++23)
---
| [ elements_of ](/w/cpp/ranges/e... | |
C++_Ranges_library/C++_Ranges_library_122_2.txt | meric/math/sqrt") , and [ std::sin ](/w/cpp/numeric/math/sin
"cpp/numeric/math/sin") .
### [ [ edit ](/mwiki/index.php?title=cpp/numeric&action=edit§ion=3 "Edit
section: Mathematical special functions \(since C++17\)") ] [ Mathematical
special functions ](/w/cpp/numeric/special_functions "cpp/numeric/special
fu... | |
C++_Ranges_library/C++_Ranges_library_29_16.txt | p "cpp/header/map") [ ` <set> ` ](/w/cpp/header/set "cpp/header/set") | (C++14) | [ N3657 ](https://wg21.link/N3657)
` __cpp_lib_generic_ unordered_lookup ` | Heterogeneous comparison lookup in [ unordered associative containers ](/w/cpp/container#Unordered_associative_containers "cpp/container") | 201811L | ... | |
C++_Ranges_library/checking-cin-input-stream-produces-an-integer9_83_0.txt | 0
You can use the variables name itself to check if a value is an integer. for
example: | |
C++_Ranges_library/C++_Ranges_library_69_5.txt | nge < ranges :: ref_view < T >> = true ; | | (since C++20)
---|---|---
| |
This specialization of [ ` std::ranges::enable_borrowed_range `
](/w/cpp/ranges/borrowed_range "cpp/ranges/borrowed range") makes ` ref_view
` satisfy [ ` borrowed_range ` ](/w/cpp/ranges/borrowed_range
"cpp/ranges/borrowe... | |
C++_Ranges_library/C++_Ranges_library_91_2.txt | ned ](/w/cpp/algorithm/is_partitioned "cpp/algorithm/is
partitioned") (C++11)
---
[ partition_point ](/w/cpp/algorithm/partition_point "cpp/algorithm/partition
point") (C++11)
[ Sorting operations ](/w/cpp/algorithm#Sorting_operations "cpp/algorithm")
| [ sort ](/w/cpp/algorithm/sort "cpp/algorithm... | |
C++_Ranges_library/C++_Ranges_library_32_15.txt | or<It1>& x, const move_iterator<It2>& y);
template<class It1, class It2>
constexpr bool operator<(const move_iterator<It1>& x, const move_iterator<It2>& y);
template<class It1, class It2>
constexpr bool operator>(const move_iterator<It1>& x, const move_iterator<It2>& y);
template<class... | |
C++_Ranges_library/param-pack.html4_30_0.txt | A template parameter can also be an expansion of another parameter pack, as we
saw in the definition of ` Inner ` above .
### Function parameter packs | |
C++_Ranges_library/C++_Ranges_library_68_2.txt | view")
[ split_view views::split ](/w/cpp/ranges/split_view "cpp/ranges/split
view")
[ views::counted ](/w/cpp/ranges/view_counted "cpp/ranges/view counted")
[ common_view views::common ](/w/cpp/ranges/common_view "cpp/ranges/common
view")
| [ reverse_view views::reverse ](/w/cpp/ranges/revers... | |
C++_Ranges_library/C++_Ranges_library_15_3.txt | call to ` ranges::begin ` is [ expression-equivalent
](/w/cpp/language/expressions#Expression-equivalence
"cpp/language/expressions") to:
1. t \+ 0 if t has an array type.
* If [ std:: remove_all_extents_t ](http://en.cppreference.com/w/cpp/types/remove_all_extents) < [ std:: remove_reference_t ](htt... | |
C++_Ranges_library/param-pack.html4_29_0.txt | With two exceptions, a template parameter pack must generally be the last
entry in the template parameter list. The first exception is for function
templates, where template arguments can be inferred from the function
arguments. So long as every template parameter following a captured parameter
pack can be inferred, it... | |
C++_Ranges_library/accumulate4_21_0.txt | * Support us
* Recent changes
* FAQ
* Offline version
##### Toolbox | |
C++_Ranges_library/C++_Ranges_library_60_5.txt | ntation of an invocation sequence consists of stacktrace entries
(class template) [ [edit]
](https://en.cppreference.com/mwiki/index.php?title=Template:cpp/utility/dsc_basic_stacktrace&action=edit)
### [ [ edit ](/mwiki/index.php?title=cpp/error&action=edit§ion=7 "Edit
section: See also") ] See also
[ `... | |
C++_Ranges_library/C++_Ranges_library_155_11.txt | > )
return const_cast < const R & > ( r ) ;
else
return r ;
} | (1) | ( exposition only* )
---|---|---
template < class T >
constexpr auto /* as-const-pointer */ ( const T * p ) noexcept
{
return p ;
} | (2) | ( exposition only* )
| |
Some range access ... | |
C++_Ranges_library/C++_Ranges_library_14_7.txt | "Cppreference:General disclaimer")
* [  ](//www.mediawiki.org/) [  ](http://qbnz.com/highlighter/) [ ;
template<class I2>
requires convertible_to<const I2&, I>
constexpr counted_iterator(const counted_iterator<I2>& x);
template<class I2>
requires assignable_from<I&, const I2&>
constexpr counted_iterator& operator=(const counted... | |
C++_Ranges_library/C++_Ranges_library_77_2.txt | s/lazy_split_view
"cpp/ranges/lazy split view")
[ split_view views::split ](/w/cpp/ranges/split_view "cpp/ranges/split
view")
[ views::counted ](/w/cpp/ranges/view_counted "cpp/ranges/view counted")
[ common_view views::common ](/w/cpp/ranges/common_view "cpp/ranges/common
view")
| [ reverse_view... | |
C++_Ranges_library/C++_Ranges_library_30_0.txt | ##### [ cppreference.com ](/)
[ Log in
](/mwiki/index.php?title=Special:UserLogin&returnto=cpp%2Franges%2Fcend "You
are encouraged to log in; however, it is not mandatory \[o\]")
##### Namespaces
* [ Page ](/w/cpp/ranges/cend "View the content page \[c\]")
* [ Discussion ](/mwiki/index.php?title=Talk:cpp/range... | |
C++_Ranges_library/C++_Ranges_library_153_8.txt | set> ` ](/w/cpp/header/unordered_set "cpp/header/unordered set") | (C++26) | [ P2363R5 ](https://wg21.link/P2363R5)
` __cpp_lib_assume_aligned ` | [ std::assume_aligned ](/w/cpp/memory/assume_aligned "cpp/memory/assume aligned") | 201811L | [ ` <memory> ` ](/w/cpp/header/memory "cpp/header/memory") | (C++20) ... | |
C++_Ranges_library/C++_Ranges_library_60_1.txt | t unexpected")
(C++11) ( until C++17* )
[ set_unexpected ](/w/cpp/error/set_unexpected "cpp/error/set unexpected") (
until C++17* )
Error codes
[ Error codes ](/w/cpp/error/errno_macros "cpp/error/errno macros")
[ errno ](/w/cpp/error/errno "cpp/error/errno")
| Exception categories
---
[ logic_e... | |
C++_Ranges_library/C++_Ranges_library_44_9.txt | ](/w/cpp/ranges/adjacent_view "cpp/ranges/adjacent view") (C++23) | a [ ` view ` ](/w/cpp/ranges/view "cpp/ranges/view") consisting of tuples of references to adjacent elements of the adapted view
(class template) (range adaptor object) [ [edit]
](https://en.cppreference.com/mwiki/index.php?title=Template:cpp/r... | |
C++_Ranges_library/param-pack.html4_19_0.txt | ## ` sizeof...(pack) `
The ` sizeof... ` operator returns a ` std::size_t ` corresponding to the
number of elements in a parameter pack. While technically considered a pack
expansion, it only ever returns a single value. Unlike ordinary ` sizeof ` ,
the argument to ` sizeof... ` must always be parenthesized and co... | |
C++_Ranges_library/C++_Ranges_library_95_20.txt | 0307R2 ](https://wg21.link/P0307R2)
Fully ` constexpr ` [ std::optional ](/w/cpp/utility/optional "cpp/utility/optional") | 202106L | [ ` <optional> ` ](/w/cpp/header/optional "cpp/header/optional") | (C++20)
(DR) | [ P2231R1 ](https://wg21.link/P2231R1)
[ Monadic operations ](/w/cpp/utility/optional#Mona... | |
C++_Ranges_library/C++_Ranges_library_59_25.txt | ex.php?title=Template:cpp/synopsis/ranges&action=edit§ion=T-23
"Template:cpp/synopsis/ranges") ] Class template std::ranges::repeat_view
namespace std::ranges {
template<move_constructible W, semiregular Bound = unreachable_sentinel_t>
requires (is_object_v<W> && same_as<W, remove_cv_... | |
C++_Ranges_library/C++_Ranges_library_49_4.txt | /copy_constructible "cpp/concepts/copy constructible") (C++20) | specifies that an object of a type can be copy constructed and move constructed
(concept) [ [edit]
](https://en.cppreference.com/mwiki/index.php?title=Template:cpp/concepts/dsc_copy_constructible&action=edit)
##### Comparison concepts
Def... | |
C++_Ranges_library/C++_Ranges_library_99_1.txt | .php?title=Template:cpp/compiler_support/20&action=edit)
* C++20 core language features (see below)
* C++20 library features (see below)
* Older standards (see below)
* References (see below)
## Contents
* 1 Notes
* 2 C++26 features
* 2.1 C++26 core language features
* 2.2 C++26 l... | |
C++_Ranges_library/C++_Ranges_library_68_5.txt | is page has been accessed 16,762 times.
* [ Privacy policy ](/w/Cppreference:Privacy_policy "Cppreference:Privacy policy")
* [ About cppreference.com ](/w/Cppreference:About "Cppreference:About")
* [ Disclaimers ](/w/Cppreference:General_disclaimer "Cppreference:General disclaimer")
* [ 
(concept) [ [edit]
](https://en.cppreference.com/mwiki/index.php?title=Template:cpp/ranges/dsc_input_range&action=edit)
[ ranges::output_range ](/w/cpp/ranges/output_range "cpp/ranges/output range") (C++20) | specifies a ran... | |
C++_Ranges_library/C++_Ranges_library_11_29.txt | cxx14_lib[] = {
COMPILER_FEATURE_ENTRY(201304L, __cpp_lib_chrono_udls)
COMPILER_FEATURE_ENTRY(201309L, __cpp_lib_complex_udls)
COMPILER_FEATURE_ENTRY(201304L, __cpp_lib_exchange_function)
COMPILER_FEATURE_ENTRY(201304L, __cpp_lib_generic_associative_lookup)
COMPILER_FEATURE_ENTRY... | |
C++_Ranges_library/C++_Ranges_library_118_0.txt | ##### [ cppreference.com ](/)
[ Log in
](/mwiki/index.php?title=Special:UserLogin&returnto=cpp%2Franges%2Frandom+access+range
"You are encouraged to log in; however, it is not mandatory \[o\]")
##### Namespaces
* [ Page ](/w/cpp/ranges/random_access_range "View the content page \[c\]")
* [ Discussion ](/mwiki/... | |
C++_Ranges_library/C++_Ranges_library_116_0.txt | ##### [ cppreference.com ](/)
[ Create account
](/mwiki/index.php?title=Special:UserLogin&returnto=cpp%2Franges%2Felements+of&type=signup)
* [ Log in ](/mwiki/index.php?title=Special:UserLogin&returnto=cpp%2Franges%2Felements+of "You are encouraged to log in; however, it is not mandatory \[o\]")
##### Namespaces... | |
C++_Ranges_library/C++_Ranges_library_70_7.txt | 3) | [ P0401R6 ](https://wg21.link/P0401R6)
[ P2652R2 ](https://wg21.link/P2652R2)
[ LWG3887 ](https://wg21.link/LWG3887)
` __cpp_lib_allocator_ traits_is_always_equal ` | [ ` std::allocator_traits::is_always_equal ` ](/w/cpp/memory/allocator_traits "cpp/memory/allocator traits") | 201411L | [ ` <memory> ... | |
C++_Ranges_library/C++_Ranges_library_143_0.txt | ##### [ cppreference.com ](/)
[ Log in
](/mwiki/index.php?title=Special:UserLogin&returnto=cpp%2Ffreestanding "You
are encouraged to log in; however, it is not mandatory \[o\]")
##### Namespaces
* [ Page ](/w/cpp/freestanding "View the content page \[c\]")
* [ Discussion ](/mwiki/index.php?title=Talk:cpp/frees... | |
C++_Ranges_library/C++_Ranges_library_140_11.txt | ps://github.com/leethomason/tinyxml2/) | Another and work in progress of TinyXML. | |
[ Xerces ](https://xerces.apache.org/xerces-c/) | | |
YAML
Library | Description | License | Configuration
---|---|---|---
[ yaml-cpp ](https://github.com/jbeder/yaml-cpp) | A YAML parser and emitter in C++ ... | |
C++_Ranges_library/C++_Ranges_library_73_5.txt | 201510L | (C++17) | [ P0012R1 ](https://wg21.link/P0012R1)
` __cpp_nontype_template_args ` | Allow constant evaluation for all [ non-type template arguments ](/w/cpp/language/template_parameters#Template_non-type_arguments "cpp/language/template parameters") | 201411L | (C++17) | [ N4268 ](https://wg21.lin... | |
C++_Ranges_library/C++_Ranges_library_82_16.txt | ion: Constrained random number algorithms") ] Constrained random number
algorithms
Defined in header ` [ <random> ](/w/cpp/header/random "cpp/header/random") `
---
Defined in namespace ` std::ranges `
[ ranges::generate_random ](/w/cpp/algorithm/ranges/generate_random "cpp/algorithm/ranges/generate random") (C... | |
C++_Ranges_library/C++_Ranges_library_85_6.txt | ](/mwiki/index.php?title=cpp/ranges/elements_view&action=edit§ion=2 "Edit
section: Nested classes") ] Nested classes
[ _ iterator _ ](/w/cpp/ranges/elements_view/iterator "cpp/ranges/elements view/iterator") (C++20) | the iterator type
( exposition-only member class template* )
---|---
[ _ sentinel _... | |
C++_Ranges_library/C++_Ranges_library_4_5.txt | eader/generator")
* [ Español ](http://es.cppreference.com/w/cpp/header/generator "cpp/header/generator")
* [ 日本語 ](http://ja.cppreference.com/w/cpp/header/generator "cpp/header/generator")
* [ Русский ](http://ru.cppreference.com/w/cpp/header/generator "cpp/header/generator")
* [ 中文 ](http://zh.cppreference.co... | |
C++_Ranges_library/C++_Ranges_library_95_5.txt | 201510L | (C++17) | [ P0012R1 ](https://wg21.link/P0012R1)
` __cpp_nontype_template_args ` | Allow constant evaluation for all [ non-type template arguments ](/w/cpp/language/template_parameters#Template_non-type_arguments "cpp/language/template parameters") | 201411L | (C++17) | [ N4268 ](https://wg21.lin... | |
C++_Ranges_library/C++_Ranges_library_114_11.txt | > )
return const_cast < const R & > ( r ) ;
else
return r ;
} | (1) | ( exposition only* )
---|---|---
template < class T >
constexpr auto /* as-const-pointer */ ( const T * p ) noexcept
{
return p ;
} | (2) | ( exposition only* )
| |
Some range access ... | |
C++_Ranges_library/C++_Ranges_library_136_8.txt | set> ` ](/w/cpp/header/unordered_set "cpp/header/unordered set") | (C++26) | [ P2363R5 ](https://wg21.link/P2363R5)
` __cpp_lib_assume_aligned ` | [ std::assume_aligned ](/w/cpp/memory/assume_aligned "cpp/memory/assume aligned") | 201811L | [ ` <memory> ` ](/w/cpp/header/memory "cpp/header/memory") | (C++20) ... | |
C++_Ranges_library/accumulate4_6_0.txt | C++
Compiler support
---
Freestanding and hosted
Language
Standard library
Standard library headers
Named requirements
Feature test macros (C++20)
Language support library
Concepts library (C++20)
Metaprogramming library (C++11)
Diagnostics library
General utilities library
Strings library... | |
C++_Ranges_library/C++_Ranges_library_2_5.txt | s [ ` input_iterator ` ](/w/cpp/iterator/input_iterator "cpp/iterator/input iterator")
(concept) [ [edit]
](https://en.cppreference.com/mwiki/index.php?title=Template:cpp/ranges/dsc_input_range&action=edit)
[ ranges::output_range ](/w/cpp/ranges/output_range "cpp/ranges/output range") (C++20) | specifies a ran... | |
C++_Ranges_library/what-will-be-the-output-of-the-following-c-code--5ab8a41bc56b6664bc9bacdd8_30_0.txt | India’s #1 Learning Platform
Start Complete Exam Preparation | |
C++_Ranges_library/C++_Ranges_library_136_32.txt | this_parameter)
COMPILER_FEATURE_ENTRY(202106L, __cpp_if_consteval)
COMPILER_FEATURE_ENTRY(202207L, __cpp_implicit_move)
COMPILER_FEATURE_ENTRY(202211L, __cpp_multidimensional_subscript)
COMPILER_FEATURE_ENTRY(202207L, __cpp_named_character_escapes)
COMPILER_FEATURE_ENTRY(202211L... | |
C++_Ranges_library/C++_Ranges_library_71_8.txt | tp://fr.cppreference.com/w/cpp/ranges/zip_transform_view "cpp/ranges/zip transform view")
* [ Italiano ](http://it.cppreference.com/w/cpp/ranges/zip_transform_view "cpp/ranges/zip transform view")
* [ 日本語 ](http://ja.cppreference.com/w/cpp/ranges/zip_transform_view "cpp/ranges/zip transform view")
* [ Português ]... | |
C++_Ranges_library/C++_Ranges_library_95_34.txt | COMPILER_FEATURE_ENTRY(202306L, __cpp_lib_not_fn)
COMPILER_FEATURE_ENTRY(202311L, __cpp_lib_out_ptr)
COMPILER_FEATURE_ENTRY(202311L, __cpp_lib_ranges_as_const)
COMPILER_FEATURE_ENTRY(202306L, __cpp_lib_ratio)
COMPILER_FEATURE_ENTRY(202306L, __cpp_lib_rcu)
COMPILER_FEATURE... | |
C++_Ranges_library/what-will-be-the-output-of-the-following-c-code--5ab8a41bc56b6664bc9bacdd8_24_0.txt | int i = 10;// initialized to 10
printf("%d", i); // It prints 10 | |
C++_Ranges_library/C++_Ranges_library_91_0.txt | ##### [ cppreference.com ](/)
[ Log in ](/mwiki/index.php?title=Special:UserLogin&returnto=cpp%2Falgorithm
"You are encouraged to log in; however, it is not mandatory \[o\]")
##### Namespaces
* [ Page ](/w/cpp/algorithm "View the content page \[c\]")
* [ Discussion ](/w/Talk:cpp/algorithm "Discussion about the... | |
C++_Ranges_library/C++_Ranges_library_82_3.txt | /next_permutation "cpp/algorithm/next
permutation")
---
[ prev_permutation ](/w/cpp/algorithm/prev_permutation "cpp/algorithm/prev
permutation")
| [ is_permutation ](/w/cpp/algorithm/is_permutation "cpp/algorithm/is
permutation") (C++11)
---
[ C library ](/w/cpp/algorithm#C_library ... | |
C++_Ranges_library/C++_Ranges_library_72_3.txt | .com/w/cpp/ranges-ranges-placeholder/begin) ( t ) == [ ranges:: end ](http://en.cppreference.com/w/cpp/ranges-ranges-placeholder/end) ( t ) ) , if that expression is valid and decltype ( [ ranges:: begin ](http://en.cppreference.com/w/cpp/ranges-ranges-placeholder/begin) ( t ) ) models [ std::forwar... | |
C++_Ranges_library/C++_Ranges_library_35_4.txt | añol ](http://es.cppreference.com/w/cpp/regex "cpp/regex")
* [ Français ](http://fr.cppreference.com/w/cpp/regex "cpp/regex")
* [ Italiano ](http://it.cppreference.com/w/cpp/regex "cpp/regex")
* [ 日本語 ](http://ja.cppreference.com/w/cpp/regex "cpp/regex")
* [ 한국어 ](http://ko.cppreference.com/w/cpp/regex "cpp/reg... | |
C++_Ranges_library/C++_Ranges_library_8_4.txt | e size of produced view is:
* s \- n \+ 1 , if s >= n ,
* 0 otherwise, and the resulting view is empty.
2) The name views :: slide denotes a [ RangeAdaptorObject
](/w/cpp/named_req/RangeAdaptorObject "cpp/named req/RangeAdaptorObject") .
Given subexpressions e and n , the expression vi... | |
C++_Ranges_library/C++_Ranges_library_80_3.txt | iterator "cpp/ranges/iota
view/iterator")
[ Member types ](/w/cpp/ranges/iota_view/iterator#Member_types
"cpp/ranges/iota view/iterator")
[ Member functions ](/w/cpp/ranges/iota_view/iterator#Member_functions
"cpp/ranges/iota view/iterator")
[ iota_view:: _iterator_ :: _iterator_
](/w/cpp/ranges/iota_view/iterato... | |
C++_Ranges_library/C++_Ranges_library_99_17.txt | 0)
11(P2082R1) | 17 | 19.27* | | 6.3 | 2023.1 (partial)* | | | | | | | | 12.0
DR: [ Implicit move ](/w/cpp/language/return "cpp/language/return") for more local objects and rvalue references | [ P1825R0 ](https://wg21.link/P1825R0) | 11* | 13 | 19.24* | 13.1.6* | 6.0 | 2021.5 | | ... | |
C++_Ranges_library/checking-cin-input-stream-produces-an-integer9_133_0.txt | 0
Checking input is an integer | |
C++_Ranges_library/C++_Ranges_library_2_12.txt | ator \- > ( ) ; } ) ; | (2) | ( exposition only* )
template < class T, class U >
concept /* different-from */ =
! [ std:: same_as ](http://en.cppreference.com/w/cpp/concepts/same_as) < [ std:: remove_cvref_t ](http://en.cppreference.com/w/cpp/types/remove_cvref) < T > , [ std:: remove_... | |
C++_Ranges_library/C++_Ranges_library_130_24.txt | 21.link/P1227R2)
` __cpp_lib_sstream_ from_string_view ` | Interfacing [ std::stringstream ](/w/cpp/io/basic_stringstream "cpp/io/basic stringstream") s with [ std::string_view ](/w/cpp/string/basic_string_view "cpp/string/basic string view") | 202306L | [ ` <sstream> ` ](/w/cpp/header/sstream "cpp/header/sstr... | |
C++_Ranges_library/C++_Ranges_library_130_19.txt | [ ` <mdspan> ` ](/w/cpp/header/mdspan "cpp/header/mdspan") | (C++23) | [ P0009R18 ](https://wg21.link/P0009R18)
[ P2599R2 ](https://wg21.link/P2599R2)
[ P2604R0 ](https://wg21.link/P2604R0)
[ P2613R1 ](https://wg21.link/P2613R1)
` __cpp_lib_memory_resource ` | [ std::pmr::memory_resource ](/w/cpp/memory/me... | |
C++_Ranges_library/C++_Ranges_library_34_7.txt | pp/iterator/bidirectional_iterator "cpp/iterator/bidirectional iterator") is a random-access iterator, supporting advancement in constant time and subscripting
(concept) [ [edit]
](https://en.cppreference.com/mwiki/index.php?title=Template:cpp/iterator/dsc_random_access_iterator&action=edit)
[ contiguous_iterator... | |
C++_Ranges_library/C++_Ranges_library_42_0.txt | ##### [ cppreference.com ](/)
[ Log in
](/mwiki/index.php?title=Special:UserLogin&returnto=cpp%2Fnamed+req%2FRangeAdaptorObject
"You are encouraged to log in; however, it is not mandatory \[o\]")
##### Namespaces
* [ Page ](/w/cpp/named_req/RangeAdaptorObject "View the content page \[c\]")
* [ Discussion ](/mw... | |
C++_Ranges_library/C++_Ranges_library_57_9.txt | s://wg21.link/P2714R1)
` __cpp_lib_bit_cast ` | [ ` std::bit_cast ` ](/w/cpp/numeric/bit_cast "cpp/numeric/bit cast") | 201806L | [ ` <bit> ` ](/w/cpp/header/bit "cpp/header/bit") | (C++20) | [ P0476R2 ](https://wg21.link/P0476R2)
` __cpp_lib_bitops ` | [ Bit operations ](/w/cpp/numeric#Bit_manipulation_.28... | |
C++_Ranges_library/C++_Ranges_library_100_0.txt | ##### [ cppreference.com ](/)
[ Log in
](/mwiki/index.php?title=Special:UserLogin&returnto=cpp%2Franges%2Frend "You
are encouraged to log in; however, it is not mandatory \[o\]")
##### Namespaces
* [ Page ](/w/cpp/ranges/rend "View the content page \[c\]")
* [ Discussion ](/mwiki/index.php?title=Talk:cpp/range... | |
C++_Ranges_library/C++_Ranges_library_34_14.txt | ssIterator ](/w/cpp/named_req/RandomAccessIterator
"cpp/named req/RandomAccessIterator")
always satisfy [ LegacyOutputIterator ](/w/cpp/named_req/OutputIterator "cpp/named req/OutputIterator") | they might not satisfy [ LegacyOutputIterator ](/w/cpp/named_req/OutputIterator "cpp/named req/OutputIterator")
[ LWG... | |
C++_Ranges_library/param-pack.html4_82_0.txt | The less serious problem with this code is that it is very tedious to write.
Even though ` emplace ` really is a different function for each index of the
variant, writing it out this way is painful. The more serious problem is that
the above function only works for variants with exactly 3 cases. A variant
with only 2 c... | |
C++_Ranges_library/C++_Ranges_library_95_22.txt | https://wg21.link/P1206R7)
` __cpp_lib_ranges_zip ` | std::ranges::zip_view , std::ranges::zip_transform_view , std::ranges::adjacent_view , std::ranges::adjacent_transform_view | 202110L | [ ` <ranges> ` ](/w/cpp/header/ranges "cpp/header/ranges") [ ` <tuple> ` ](/w/cpp/header/tuple "cpp/header/tuple") [ ... | |
C++_Ranges_library/checking-cin-input-stream-produces-an-integer9_140_0.txt | 0
C++ Checking input of cin for proper data | |
C++_Ranges_library/C++_Ranges_library_75_0.txt | ##### [ cppreference.com ](/)
[ Log in
](/mwiki/index.php?title=Special:UserLogin&returnto=cpp%2Franges%2Fcpo "You
are encouraged to log in; however, it is not mandatory \[o\]")
##### Namespaces
* [ Page ](/w/cpp/ranges/cpo "View the content page \[c\]")
* [ Discussion ](/mwiki/index.php?title=Talk:cpp/ranges/... | |
C++_Ranges_library/C++_Ranges_library_33_3.txt | ranges::dangling:: dangling
* 2.1 Example
* 2.2 See also
---
### [ [ edit
](/mwiki/index.php?title=cpp/ranges/dangling&action=edit§ion=1 "Edit
section: Member functions") ] Member functions
## std::ranges::dangling:: dangling
constexpr dangling ( ) noexcept = default ; | (1) |... | |
C++_Ranges_library/C++_Ranges_library_117_2.txt | es/join_with_view
"cpp/ranges/join with view") (C++23) (C++23)
[ lazy_split_view views::lazy_split ](/w/cpp/ranges/lazy_split_view
"cpp/ranges/lazy split view")
[ split_view views::split ](/w/cpp/ranges/split_view "cpp/ranges/split
view")
[ views::counted ](/w/cpp/ranges/view_counted "cpp/ranges/view counte... | |
C++_Ranges_library/param-pack.html4_77_0.txt | Notice that ` local_copy ` takes a ` Have& ` and not a ` Have&& ` , because it
is intended to be used with variables, whose expression type will always be an
lvalue and hence cannot be bound to an rvalue reference. (We explicitly
specify the type of ` Have ` when invoking ` local_copy ` , so it canât be a
forwarding ... | |
C++_Ranges_library/C++_Ranges_library_82_17.txt | [edit]
](https://en.cppreference.com/mwiki/index.php?title=Template:cpp/algorithm/ranges/return_types/dsc_out_value_result&action=edit)
### [ [ edit
](/mwiki/index.php?title=cpp/algorithm/ranges&action=edit§ion=7 "Edit
section: Notes") ] Notes
[ Feature-test ](/w/cpp/utility/feature_test "cpp/utility/featur... | |
C++_Ranges_library/C++_Ranges_library_151_7.txt | _view&action=edit)
Retrieved from " [
https://en.cppreference.com/mwiki/index.php?title=cpp/ranges/stride_view&oldid=157708
](https://en.cppreference.com/mwiki/index.php?title=cpp/ranges/stride_view&oldid=157708)
"
##### Navigation
* [ Support us ](http://www.cppreference.com/support)
* [ Recent changes ](/... | |
C++_Ranges_library/what-will-be-the-output-of-the-following-c-code--5ab8a41bc56b6664bc9bacdd8_29_0.txt | Last updated on Apr 12, 2023
The Indian Space Research Organization (ISRO) issued an official notification
for the ISRO Scientist CS 2022 , which will take place on November 29th,
2022. The ISRO has announced 14 new vacancies for the current recruitment
cycle. Candidates can apply from November 29th to December 19th... | |
C++_Ranges_library/C++_Ranges_library_99_11.txt | ing/basic_string_view/basic_string_view "cpp/string/basic string view/basic string view") should be explicit | [ P2499R0 ](https://wg21.link/P2499R0) | 12.2 | 16 | 19.34* | 15.0.0* | | |
[ ` std::generator ` ](/w/cpp/coroutine/generator "cpp/coroutine/generator") : synchronous coroutine generator for ran... | |
C++_Ranges_library/C++_Ranges_library_141_21.txt | view") | 202207L | [ ` <ranges> ` ](/w/cpp/header/ranges "cpp/header/ranges") | (C++23) | [ P2278R4 ](https://wg21.link/P2278R4)
Making std::basic_const_iterator follow its underlying type's convertibility | 202311L | [ ` <ranges> ` ](/w/cpp/header/ranges "cpp/header/ranges") | (C++26) | [ P2836R1 ](h... | |
C++_Ranges_library/param-pack.html4_34_0.txt |
int f1(std::same_as<int> auto ...i);
int f2(std::convertible_to<int> auto ...i);
Unfortunately, it is important to realize that neither is quite equivalent.
When a parameter type is declared ` int ` , unlike ` auto ` , it triggers
integer conversion . A concept such as ` same_as ` doesnât ... | |
C++_Ranges_library/C++_Ranges_library_11_6.txt | ents ](/w/cpp/language/template_parameters#Template_template_arguments "cpp/language/template parameters") | 201611L | (C++17) | [ P0522R0 ](https://wg21.link/P0522R0)
` __cpp_threadsafe_static_init ` | [ Dynamic initialization and destruction with concurrency ](/w/cpp/language/storage_duration#Static_local_var... | |
C++_Ranges_library/C++_Ranges_library_98_2.txt | /w/cpp/ranges/lazy_split_view
"cpp/ranges/lazy split view")
[ split_view views::split ](/w/cpp/ranges/split_view "cpp/ranges/split
view")
[ views::counted ](/w/cpp/ranges/view_counted "cpp/ranges/view counted")
[ common_view views::common ](/w/cpp/ranges/common_view "cpp/ranges/common
view")
| [ ... | |
C++_Ranges_library/C++_Ranges_library_139_10.txt | duct_view "cpp/ranges/cartesian product view") (C++23) | a [ ` view ` ](/w/cpp/ranges/view "cpp/ranges/view") consisting of tuples of results calculated by the n-ary cartesian product of the adapted views
(class template) (customization point object) [ [edit]
](https://en.cppreference.com/mwiki/index.php?title=T... | |
C++_Ranges_library/C++_Ranges_library_132_3.txt | it view/deduction guides")
[ [edit]
](https://en.cppreference.com/mwiki/index.php?title=Template:cpp/ranges/split_view/navbar_content&action=edit)
Defined in header ` [ <ranges> ](/w/cpp/header/ranges "cpp/header/ranges") ` | |
---|---|---
template < [ ranges:: forward_range
](http://en.cppreference.com/w... | |
C++_Ranges_library/C++_Ranges_library_32_27.txt | ==(unreachable_sentinel_t, const I&) noexcept
{ return false; }
};
}
#### [ [ edit
](/mwiki/index.php?title=Template:cpp/synopsis/iterator&action=edit§ion=T-44
"Template:cpp/synopsis/iterator") ] Class template [ std::istream_iterator
](/w/cpp/iterator/istream_iterator "cpp/iterator/istream ... | |
C++_Ranges_library/C++_Ranges_library_11_34.txt | COMPILER_FEATURE_ENTRY(202306L, __cpp_lib_not_fn)
COMPILER_FEATURE_ENTRY(202311L, __cpp_lib_out_ptr)
COMPILER_FEATURE_ENTRY(202311L, __cpp_lib_ranges_as_const)
COMPILER_FEATURE_ENTRY(202306L, __cpp_lib_ratio)
COMPILER_FEATURE_ENTRY(202306L, __cpp_lib_rcu)
COMPILER_FEATURE... | |
C++_Ranges_library/checking-cin-input-stream-produces-an-integer9_117_0.txt | * c++
* cin
or ask your own question . |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.