Namespaces
Variants
Views
Actions

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 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

bitset<>

C

const_cast<>()
dynamic_cast<>()
reinterpret_cast<>()
static_cast<>()

D

deque<>

E

F

forward_list<> (since C++11)

G

H

I

J

K

L

list<>

M

map<>
multimap<>
multiset<>

N

O

P

priority_queue<>

Q

queue<>

R

S

set<>
stack<>

T

U

unordered_map<> (since C++11)
unordered_multimap<> (since C++11)
unordered_multiset<> (since C++11)
unordered_set<> (since C++11)

V

vector<>

X