You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/mfc/reference/cdc-class.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2999,7 +2999,7 @@ The function stores the values in the buffer pointed to by *`lpBuffer`*. This bu
2999
2999
3000
3000
If a character in the consecutive group of characters doesn't exist in a particular font, it will be assigned the width value of the default character.
Copy file name to clipboardExpand all lines: docs/standard-library/bit-functions.md
+12-12Lines changed: 12 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ The `<bit>` header includes the following non-member template functions:
24
24
|[`rotl`](#rotl)| Compute the result of a bitwise left rotation. |
25
25
|[`rotr`](#rotr)| Compute the result of a bitwise right rotation. |
26
26
27
-
## <aname="bit_cast"></a>`bit_cast`
27
+
## <aname="bit_cast"></a>`bit_cast`
28
28
29
29
Copy a bit pattern from an object of type `From` to a new object of type `To`.
30
30
@@ -92,7 +92,7 @@ This function template is `constexpr` if and only if `To`, `From`, and the types
92
92
- Not volatile-qualified
93
93
- Have no non-static data member that is a reference type
94
94
95
-
## <aname="bit_ceil"></a>`bit_ceil`
95
+
## <aname="bit_ceil"></a>`bit_ceil`
96
96
97
97
Find the smallest power of two greater than or equal to a value. For example, given `3`, returns `4`.
98
98
@@ -142,7 +142,7 @@ bit_ceil(0b0101) = 0b1000
142
142
143
143
This template function only participates in overload resolution if `T` is an unsigned integer type. For example: `unsigned int`, `unsigned long`, `unsigned short`, `unsigned char`, and so on.
144
144
145
-
## <aname="bit_floor"></a>`bit_floor`
145
+
## <aname="bit_floor"></a>`bit_floor`
146
146
147
147
Find the largest power of two not greater than a value. For example, given `5`, returns `4`.
148
148
@@ -193,7 +193,7 @@ bit_floor(0b0101) = 0b0100
193
193
194
194
This template function only participates in overload resolution if `T` is an unsigned integer type. For example: `unsigned int`, `unsigned long`, `unsigned short`, `unsigned char`, and so on.
195
195
196
-
## <aname="bit_width"></a>`bit_width`
196
+
## <aname="bit_width"></a>`bit_width`
197
197
198
198
Find the smallest number of bits needed to represent a value.
199
199
@@ -247,7 +247,7 @@ bit_width(8) = 4
247
247
248
248
This template function only participates in overload resolution if `T` is an unsigned integer type. For example: `unsigned int`, `unsigned long`, `unsigned short`, `unsigned char`, and so on.
249
249
250
-
## <aname="countl_zero"></a>`countl_zero`
250
+
## <aname="countl_zero"></a>`countl_zero`
251
251
252
252
Count the number of consecutive bits set to zero, starting from the most significant bit.
253
253
@@ -300,7 +300,7 @@ countl_zero(0b10000000) = 0
300
300
301
301
This template function only participates in overload resolution if `T` is an unsigned integer type. For example: `unsigned int`, `unsigned long`, `unsigned short`, `unsigned char`, and so on.
302
302
303
-
## <aname="countl_one"></a>`countl_one`
303
+
## <aname="countl_one"></a>`countl_one`
304
304
305
305
Count the number of consecutive bits set to one, starting from the most significant bit.
306
306
@@ -353,7 +353,7 @@ countl_one(0b11111111) = 8
353
353
354
354
This template function only participates in overload resolution if `T` is an unsigned integer type. For example: `unsigned int`, `unsigned long`, `unsigned short`, `unsigned char`, and so on.
355
355
356
-
## <aname="countr_zero"></a>`countr_zero`
356
+
## <aname="countr_zero"></a>`countr_zero`
357
357
358
358
Count the number of consecutive bits set to zero, starting from the least significant bit.
359
359
@@ -407,7 +407,7 @@ countr_zero(0b10000000) = 7
407
407
408
408
This template function only participates in overload resolution if `T` is an unsigned integer type. For example: `unsigned int`, `unsigned long`, `unsigned short`, `unsigned char`, and so on.
409
409
410
-
## <aname="countr_one"></a>`countr_one`
410
+
## <aname="countr_one"></a>`countr_one`
411
411
412
412
Count the number of consecutive bits set to one, starting from the least significant bit.
413
413
@@ -460,7 +460,7 @@ countr_one(0b11111111) = 8
460
460
461
461
This template function only participates in overload resolution if `T` is an unsigned integer type. For example: `unsigned int`, `unsigned long`, `unsigned short`, `unsigned char`, and so on.
462
462
463
-
## <aname="has_single_bit"></a>`has_single_bit`
463
+
## <aname="has_single_bit"></a>`has_single_bit`
464
464
465
465
Check if a value has only one bit set.This is the same as testing whether a value is a power of two.
This template function only participates in overload resolution if `T` is an unsigned integer type. For example: `unsigned int`, `unsigned long`, `unsigned short`, `unsigned char`, and so on.
516
516
517
-
## <aname="popcount"></a>`popcount`
517
+
## <aname="popcount"></a>`popcount`
518
518
519
519
Count the number of bits set to one in an unsigned integer value.
520
520
@@ -573,7 +573,7 @@ popcount(0b1111) = 4
573
573
574
574
This template function only participates in overload resolution if `T` is an unsigned integer type. For example: `unsigned int`, `unsigned long`, `unsigned short`, `unsigned char`, and so on.
575
575
576
-
## <aname="rotl"></a>`rotl`
576
+
## <aname="rotl"></a>`rotl`
577
577
578
578
Rotates the bits of an unsigned integer value left the specified number of times. Bits that "fall out" of the leftmost bit are rotated into the rightmost bit.
This template function only participates in overload resolution if `T` is an unsigned integer type. For example: `unsigned int`, `unsigned long`, `unsigned short`, `unsigned char`, and so on.
637
637
638
-
## <aname="rotr"></a>`rotr`
638
+
## <aname="rotr"></a>`rotr`
639
639
640
640
Rotates the bits of `value` right the specified number of times. Bits that 'fall out' of the rightmost bit are rotated back into the leftmost bit.
Copy file name to clipboardExpand all lines: docs/standard-library/system-clock-structure.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -66,7 +66,7 @@ A clock is *steady* if it is *monotonic* and if the time between clock ticks is
66
66
67
67
**Namespace:**`std::chrono`
68
68
69
-
## <aname="from_time_t"></a>`from_time_t`
69
+
## <aname="from_time_t"></a>`from_time_t`
70
70
71
71
Static method that returns a [time_point](../standard-library/time-point-class.md) that most closely approximates the time that is represented by *Tm*.
A [time_t](../c-runtime-library/standard-types.md) object.
81
81
82
-
## <a name="is_steady_constant"></a>`is_steady`
82
+
## <a name="is_steady_constant"></a>`is_steady`
83
83
84
84
A static value that specifies whether the clock type is *steady*. Because the `system_clock` isn't steady, you can't use this clock to take the time before an event, the time after an event, and reliably subtract them to get the duration of the event because the clock may be adjusted during the timing interval.
0 commit comments