Language and Standard Library

Language and Standard Library

Fast-reference links for core language rules, standard-library APIs, headers, and everyday lookup work.

Language and Standard Library

Primary lookup sites

Best use cases

Practical habit

When to start here

Fast lookup workflow

  1. Start with cppreference for the general rule, signature, or header.
  2. Check vendor docs when the issue involves implementation notes, platform behavior, or ecosystem-specific guidance.
  3. Return to the handbook when you want the broader teaching context or surrounding tradeoffs.

What to look up first

Fast library-reference habit

If you are checking a container, scan construction, modifier operations, invalidation, and lookup complexity before writing code. If you are checking a vocabulary type, scan ownership or error-transport semantics before looking at helper members.

Language-rule workflow

  1. Use the handbook page to frame the topic and major tradeoffs.
  2. Use cppreference to confirm exact syntax, guarantees, and edge cases.
  3. Verify the rule in a tiny local program when the consequence affects performance, overload resolution, or lifetime.

Example in practice

  1. Pick one resource from this page.
  2. Use it to answer one concrete question about syntax, tooling, or workflow.
  3. Bring the result back into a local example or project build.