template <class T> struct is_placeholder;
integral_constant<int,I>
, where I is the placeholder's order number (1
for _1, 2
for _2, ...) if T is the type of a bind placeholder, or zero (0
) if it is not.integral_constant<int,I>
, where I is the placeholder's order number (1
for _1, 2
for _2, ...) if T is the type of a bind placeholder, or zero (0
) if it is not.member type | definition |
---|---|
value_type | int |
type | The integral_constant type it inherits. |
member type | definition |
---|---|
value_type | int |
type | The integral_constant type it inherits, or a type with the same characteristics. |
member constant | definition |
---|---|
value | If T is the type of a placeholder: the placeholder's order number (1 for _1, 2 for _2, ...).Otherwise: 0 . |
member constant | definition |
---|---|
operator int | Returns the member constant value |
|
|
1 2 0 |