Alphabetical Index

Alphabetical Index

A quick alphabetized map of major C and C++ keywords, headers, types, operators, and utility families.

How to use this reference page

Use reference pages to confirm names, categories, nearby facilities, and the constraints that matter before writing or reviewing code.

  • Scan the top of the page first to identify the primary types, functions, or algorithm families involved.
  • Use the nearby-page links when your question is really about a companion header, related algorithm family, or broader subsystem.
  • Validate tricky behavior with a small compileable example before relying on memory for details like invalidation, ordering, allocation, or lifetime rules.

Alphabetical Index

This is a lookup hub. Entries point to the most relevant reference page for that name or family.

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

Notes

Example in practice

#include <vector>
#include <string_view>

int main() {
    std::vector<std::string_view> headers{"<vector>", "<ranges>", "<format>"};
    return static_cast<int>(headers.size());
}