Erasable
  • References/C, C++/C++/Concepts

Specifies that an object of the type can be destroyed by a given

2025-01-10 15:47:30
PODType
  • References/C, C++/C++/Concepts

Specifies that the type is POD (Plain Old Data) type. This means the type is compatible with the types used in the C programming language, can be manipulated using C library

2025-01-10 15:47:30
SequenceContainer
  • References/C, C++/C++/Concepts

A SequenceContainer is a Container

2025-01-10 15:47:30
BitmaskType
  • References/C, C++/C++/Concepts

Defines a type that can be used to represent a set of constant values or any combination of those values. This trait is typically implemented by integer types,

2025-01-10 15:47:30
BasicLockable
  • References/C, C++/C++/Concepts

The BasicLockable concept describes the minimal characteristics of types that provide exclusive blocking semantics for execution agents (i.e. threads).

2025-01-10 15:47:30
Iterator
  • References/C, C++/C++/Concepts

The Iterator concept describes types that can be used to identify and traverse the elements of a container. Iterator

2025-01-10 15:47:30
AllocatorAwareContainer
  • References/C, C++/C++/Concepts

An AllocatorAwareContainer is a

2025-01-10 15:47:30
Destructible
  • References/C, C++/C++/Concepts

Specifies that an instance of the type can be destructed. Requirements The type T satisfies

2025-01-10 15:47:30
ValueSwappable
  • References/C, C++/C++/Concepts

Two objects of this type can be dereferenced and the resulting values can be swapped using unqualified function call swap() in the context where both

2025-01-10 15:47:30
MoveConstructible
  • References/C, C++/C++/Concepts

Specifies that an instance of the type can be constructed from an

2025-01-10 15:47:30