forked from p12tic/cppreference-doc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex-cpp-search-app.txt
138 lines (138 loc) · 5.96 KB
/
index-cpp-search-app.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
Basic concepts => cpp/language/basic_concepts
Comments => cpp/comment
Keywords => cpp/keyword
Escape sequences => cpp/language/escape
ASCII chart => cpp/language/ascii
Names => cpp/language/name
Identifiers => cpp/language/identifiers
Types => cpp/language/type
Arithmetic types => cpp/language/types
Objects => cpp/language/object
Scope => cpp/language/scope
Lifetime => cpp/language/lifetime
Storage duration and linkage => cpp/language/storage_duration
Definitions and one definition rule => cpp/language/definition
Name lookup => cpp/language/lookup
Memory model => cpp/language/memory_model
Phases of translation => cpp/language/translation_phases
The main() function => cpp/language/main_function
Preprocessor => cpp/preprocessor
#if directive => cpp/preprocessor/conditional
#ifdef directive => cpp/preprocessor/conditional
#ifndef directive => cpp/preprocessor/conditional
#define directive => cpp/preprocessor/replace
macro => cpp/preprocessor/replace
#include directive => cpp/preprocessor/include
#warning directive => cpp/preprocessor/warning
#error directive => cpp/preprocessor/error
#pragma directive => cpp/preprocessor/impl
#line directive => cpp/preprocessor/line
Expressions => cpp/language/expressions
Operators => cpp/language/expressions#Operators
Conversions => cpp/language/expressions#Conversions
Literals => cpp/language/expressions#Literals
Operator precedence => cpp/language/operator_precedence
Value categories => cpp/language/value_category
Evaluation order and sequencing => cpp/language/eval_order
sizeof operator => cpp/language/sizeof
alignof operator => cpp/language/alignof
typeid operator => cpp/language/typeid
new expression => cpp/language/new
delete expression => cpp/language/delete
Constant expressions => cpp/language/constant_expression
Statements => cpp/language/statements
if statement => cpp/language/if
switch statement => cpp/language/switch
for loop => cpp/language/for
range-for loop => cpp/language/range-for
while loop => cpp/language/while
do-while loop => cpp/language/do
continue statement => cpp/language/continue
break statement => cpp/language/break
goto statement => cpp/language/goto
return statement => cpp/language/return
Declaration => cpp/language/declarations
Namespace declaration => cpp/language/namespace
Namespace alias => cpp/language/namespace_alias
static_assert declaration => cpp/language/static_assert
Lvalue and rvalue references => cpp/language/reference
Pointers => cpp/language/pointer
Arrays => cpp/language/array
Enumerations and enumerators => cpp/language/enum
const/volatile => cpp/language/cv
constexpr specifier => cpp/language/constexpr
decltype operator => cpp/language/decltype
auto specifier => cpp/language/auto
alignas specifier => cpp/language/alignas
typedefs => cpp/language/typedef
Type alias => cpp/language/type_alias
Attributes => cpp/language/attributes
Initialization => cpp/language/initialization
Default initialization => cpp/language/default_initialization
Value initialization => cpp/language/value_initialization
Copy initialization => cpp/language/copy_initialization
Direct initialization => cpp/language/direct_initialization
Aggregate initialization => cpp/language/aggregate_initialization
List initialization => cpp/language/list_initialization
Reference initialization => cpp/language/reference_initialization
Functions => cpp/language/functions
Function declaration => cpp/language/function
Default arguments => cpp/language/default_arguments
Variadic arguments => cpp/language/variadic_arguments
Lambda expression => cpp/language/lambda
inline specifier => cpp/language/inline
Argument-dependent lookup => cpp/language/adl
Overload resolution => cpp/language/overload_resolution
Operator overloading => cpp/language/operators
Address of an overload => cpp/language/overloaded_address
Exceptions => cpp/language/exceptions
throw expression => cpp/language/throw
try-catch block => cpp/language/try_catch
noexcept specifier => cpp/language/noexcept_spec
noexcept operator => cpp/language/noexcept
Exception specification => cpp/language/except_spec
Classes => cpp/language/classes
Class types => cpp/language/class
Union types => cpp/language/union
Data members => cpp/language/data_members
Member functions => cpp/language/member_functions
Static members => cpp/language/static
Nested types => cpp/language/nested_types
Member templates => cpp/language/member_template
Derived class => cpp/language/derived_class
using-declaration => cpp/language/using_declaration
Virtual function => cpp/language/virtual
Abstract class => cpp/language/abstract_class
Bit fields => cpp/language/bit_field
this pointer => cpp/language/this
Access specifiers => cpp/language/access
friend specifier => cpp/language/friend
Default constructor => cpp/language/default_constructor
Copy constructor => cpp/language/copy_constructor
Copy assignment operator => cpp/language/as_operator
Destructor => cpp/language/destructor
Move constructor => cpp/language/move_constructor
Move assignment operator => cpp/language/move_operator
Member initializer lists => cpp/language/initializer_list
Templates => cpp/language/templates
Class template => cpp/language/class_template
Function template => cpp/language/function_template
Variable template => cpp/language/variable_template
Explicit specialization => cpp/language/template_specialization
Partial specialization => cpp/language/partial_specialization
Dependent names => cpp/language/dependent_name
Parameter packs => cpp/language/parameter_pack
sizeof... operator => cpp/language/sizeof...
SFINAE => cpp/language/sfinae
History of C++ => cpp/language/history
Inline assembly => cpp/language/asm
Extending the namespace std => cpp/language/extending_std
RAII => cpp/language/raii
Rule of three => cpp/language/rule_of_three
As-if rule => cpp/language/as_if
Copy elision => cpp/language/copy_elision
Empty base optimization => cpp/language/ebo
static_cast conversion => cpp/language/static_cast
dynamic_cast conversion => cpp/language/dynamic_cast
reinterpret_cast conversion => cpp/language/reinterpret_cast
const_cast conversion => cpp/language/const_cast