Difference between revisions of "cpp/symbol index"
From cppreference.com
< cpp
(Created new page for alphabetical list of STL symbol names. First check-in to show the idea.) |
(Added all containers.) |
||
Line 26: | Line 26: | ||
=B= | =B= | ||
+ | [[cpp/utility/bitset | {{c|bitset<>}}]] <br/> | ||
=C= | =C= | ||
Line 34: | Line 35: | ||
=D= | =D= | ||
+ | [[cpp/container/deque | {{c|deque<>}}]] <br/> | ||
=E= | =E= | ||
=F= | =F= | ||
+ | [[cpp/container/forward_list | {{c|forward_list<>}}]] {{mark since c++11}} <br/> | ||
=G= | =G= | ||
Line 50: | Line 53: | ||
=L= | =L= | ||
+ | [[cpp/container/list | {{c|list<>}}]] <br/> | ||
=M= | =M= | ||
+ | [[cpp/container/map | {{c|map<>}}]] <br/> | ||
+ | [[cpp/container/multimap | {{c|multimap<>}}]] <br/> | ||
+ | [[cpp/container/multiset | {{c|multiset<>}}]] <br/> | ||
=N= | =N= | ||
Line 58: | Line 65: | ||
=P= | =P= | ||
+ | [[cpp/container/priority_queue | {{c|priority_queue<>}}]] <br/> | ||
+ | |||
+ | =Q= | ||
+ | [[cpp/container/queue | {{c|queue<>}}]] <br/> | ||
=R= | =R= | ||
=S= | =S= | ||
+ | [[cpp/container/set | {{c|set<>}}]] <br/> | ||
+ | [[cpp/container/stack | {{c|stack<>}}]] <br/> | ||
=T= | =T= | ||
=U= | =U= | ||
+ | [[cpp/container/unordered_map | {{c|unordered_map<>}}]] {{mark since c++11}} <br/> | ||
+ | [[cpp/container/unordered_multimap | {{c|unordered_multimap<>}}]] {{mark since c++11}} <br/> | ||
+ | [[cpp/container/unordered_multiset | {{c|unordered_multiset<>}}]] {{mark since c++11}} <br/> | ||
+ | [[cpp/container/unordered_set | {{c|unordered_set<>}}]] {{mark since c++11}} <br/> | ||
=V= | =V= | ||
+ | [[cpp/container/vector | {{c|vector<>}}]] <br/> | ||
=X= | =X= |
Revision as of 02:46, 8 August 2016
This is work in progress, there may be inaccuracies |
This page tries to list all the symbols that are available from the Standard Template Library. The symbols are written as follows:
- Function names with ().
- Templates with <>.
Contents |
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
A
array<> (since C++11)
B
C
const_cast<>()
dynamic_cast<>()
reinterpret_cast<>()
static_cast<>()
D
E
F
forward_list<> (since C++11)
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
unordered_map<> (since C++11)
unordered_multimap<> (since C++11)
unordered_multiset<> (since C++11)
unordered_set<> (since C++11)