Variable | Definition | |
T, U, C | any cv-unqualified object type ([basic.types]) | |
X | an allocator class for type T | |
Y | the corresponding allocator class for type U | |
XX | the type allocator_traits<X> | |
YY | the type allocator_traits<Y> | |
a, a1, a2 | lvalues of type X | |
u | the name of a variable being declared | |
b | a value of type Y | |
c | a pointer of type C* through which indirection is valid | |
p | a value of type XX::pointer, obtained
by calling a1.allocate, where a1 == a | |
q | a value of type XX::const_pointer
obtained by conversion from a value p | |
r | a value of type T&
obtained by the expression *p | |
w | a value of type XX::void_pointer obtained by
conversion from a value p | |
x | a value of type XX::const_void_pointer obtained by
conversion from a value q or a value w | |
y | a value of type XX::const_void_pointer obtained by
conversion from a result value of YY::allocate, or else a value of
type (possibly const) std::nullptr_t | |
n | a value of type XX::size_type | |
Args | a template parameter pack | |
args | a function parameter pack with the pattern Args&& |