Skip to content

Commit f035aa6

Browse files
author
mtx48109
committed
format standard pr7
1 parent 925a169 commit f035aa6

30 files changed

+67
-67
lines changed

docs/standard-library/is-abstract-class.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ struct is_abstract;
2525

2626
### Parameters
2727

28-
`Ty`
28+
*Ty*
2929
The type to query.
3030

3131
## Remarks
3232

33-
An instance of the type predicate holds true if the type `Ty` is a class that has at least one pure virtual function, otherwise it holds false.
33+
An instance of the type predicate holds true if the type *Ty* is a class that has at least one pure virtual function, otherwise it holds false.
3434

3535
## Example
3636

docs/standard-library/is-arithmetic-class.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ struct is_arithmetic;
2525

2626
### Parameters
2727

28-
`Ty`
28+
*Ty*
2929
The type to query.
3030

3131
## Remarks
3232

33-
An instance of the type predicate holds true if the type `Ty` is an arithmetic type, that is, an integral type or a floating point type, or a `cv-qualified` form of one of them, otherwise it holds false.
33+
An instance of the type predicate holds true if the type *Ty* is an arithmetic type, that is, an integral type or a floating point type, or a `cv-qualified` form of one of them, otherwise it holds false.
3434

3535
## Example
3636

docs/standard-library/is-array-class.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ struct is_array;
2525

2626
### Parameters
2727

28-
`Ty`
28+
*Ty*
2929
The type to query.
3030

3131
## Remarks
3232

33-
An instance of the type predicate holds true if the type `Ty` is an array type, otherwise it holds false.
33+
An instance of the type predicate holds true if the type *Ty* is an array type, otherwise it holds false.
3434

3535
## Example
3636

docs/standard-library/is-assignable-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ From
3333
3434
## Remarks
3535
36-
The unevaluated expression `declval<To>() = declval<From>()` must be well-formed. Both `From` and `To` must be complete types, `void`, or arrays of unknown bound.
36+
The unevaluated expression `declval<To>() = declval<From>()` must be well-formed. Both `From` and `To` must be complete types, **void**, or arrays of unknown bound.
3737
3838
## Requirements
3939

docs/standard-library/is-base-of-class.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ struct is_base_of;
2525
2626
### Parameters
2727
28-
`Base`
28+
*Base*
2929
The base class to test for.
3030
31-
`Derived`
31+
*Derived*
3232
The derived type to test for.
3333
3434
## Remarks
3535
36-
An instance of the type predicate holds true if the type `Base` is a base class of the type `Derived`, otherwise it holds false.
36+
An instance of the type predicate holds true if the type *Base* is a base class of the type *Derived*, otherwise it holds false.
3737
3838
## Example
3939

docs/standard-library/is-class-class.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ struct is_class;
2525

2626
### Parameters
2727

28-
`Ty`
28+
*Ty*
2929
The type to query.
3030

3131
## Remarks
3232

33-
An instance of the type predicate holds true if the type `Ty` is a type defined as a `class` or a `struct`, or a `cv-qualified` form of one of them, otherwise it holds false.
33+
An instance of the type predicate holds true if the type *Ty* is a type defined as a **class** or a **struct**, or a `cv-qualified` form of one of them, otherwise it holds false.
3434

3535
## Example
3636

docs/standard-library/is-compound-class.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ struct is_compound;
2525

2626
### Parameters
2727

28-
`Ty`
28+
*Ty*
2929
The type to query.
3030

3131
## Remarks
3232

33-
An instance of the type predicate holds `false` if the type of `Ty` is a fundamental type (that is, if [is_fundamental](../standard-library/is-fundamental-class.md)\<Ty> holds `true`); otherwise, it holds `true`. Thus, the predicate holds `true` if `Ty` is an array type, a function type, a pointer to `void` or an object or a function, a reference, a class, a union, an enumeration, or a pointer to non-static class member, or a *cv-qualified* form of one of them.
33+
An instance of the type predicate holds `false` if the type of *Ty* is a fundamental type (that is, if [is_fundamental](../standard-library/is-fundamental-class.md)\<Ty> holds `true`); otherwise, it holds `true`. Thus, the predicate holds `true` if *Ty* is an array type, a function type, a pointer to **void** or an object or a function, a reference, a class, a union, an enumeration, or a pointer to non-static class member, or a *cv-qualified* form of one of them.
3434

3535
## Example
3636

docs/standard-library/is-const-class.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ struct is_const;
2525

2626
### Parameters
2727

28-
`Ty`
28+
*Ty*
2929
The type to query.
3030

3131
## Remarks
3232

33-
An instance of the type predicate holds true if `Ty` is `const-qualified`.
33+
An instance of the type predicate holds true if *Ty* is `const-qualified`.
3434

3535
## Example
3636

docs/standard-library/is-constructible-class.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ struct is_constructible;
2525
2626
### Parameters
2727
28-
`T`
28+
*T*
2929
The type to query.
3030
31-
`Args`
32-
The argument types to match in a constructor of `T`.
31+
*Args*
32+
The argument types to match in a constructor of *T*.
3333
3434
## Remarks
3535
36-
An instance of the type predicate holds true if the type `T` is constructible by using the argument types in `Args`, otherwise it holds false. Type `T` is constructible if the variable definition `T t(std::declval<Args>()...);` is well-formed. Both `T` and all the types in `Args` must be complete types, `void`, or arrays of unknown bound.
36+
An instance of the type predicate holds true if the type *T* is constructible by using the argument types in *Args*, otherwise it holds false. Type *T* is constructible if the variable definition `T t(std::declval<Args>()...);` is well-formed. Both *T* and all the types in *Args* must be complete types, **void**, or arrays of unknown bound.
3737
3838
## Requirements
3939

docs/standard-library/is-convertible-class.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ struct is_convertible;
2525
2626
### Parameters
2727
28-
`From`
28+
*From*
2929
The type to convert from.
3030
31-
`Ty`
31+
*Ty*
3232
The type to convert to.
3333
3434
## Remarks

0 commit comments

Comments
 (0)