Skip to content

Commit fdf257d

Browse files
TylerMSFTTylerMSFT
authored andcommitted
add cross-linking
1 parent 29be4c8 commit fdf257d

14 files changed

+70
-25
lines changed

docs/standard-library/chrono-operators.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1061,7 +1061,7 @@ A `duration` object.
10611061
*`Div`*\
10621062
An integral value.
10631063
1064-
*`Left`*\
1064+
*`Left`*\w
10651065
The left `duration` object.
10661066
10671067
*`Right`*\

docs/standard-library/day-class.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -268,4 +268,8 @@ Output:
268268
## See also
269269

270270
[`<chrono>`](../standard-library/chrono.md)\
271+
[`month_day` class](month-day-class.md)\
272+
[`month_day_last` class](month-day-last-class.md)\
273+
[`year_month_day`](year-month-day-class.md)\
274+
[`year_month_day_last`](year-month-day-last-class.md)\
271275
[Header Files Reference](../standard-library/cpp-standard-library-header-files.md)

docs/standard-library/month-day-class.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
description: "Learn more about: month_day Class"
33
title: "month_day class"
4-
ms.date: "6/25/2021"
4+
ms.date: "6/28/2021"
55
f1_keywords: ["chrono/std::chrono::month_day", "chrono/std::chrono::month_day::day", "chrono/std::chrono::month_day::month", "chrono/std::chrono::month_day::ok"]
66
helpviewer_keywords: ["std::chrono [C++], month_day"]
77
---
@@ -64,6 +64,8 @@ Construct a `month_day` with a month value of *`m`*.
6464
1\) The default constructor doesn't initialize the month or day values.\
6565
2\) Construct a `month_day` with the month value initialized to `m` and the day value initialized to `d`.
6666
67+
For information about C++ 20 syntax to specify dates, see [`operator/`](chrono-operators.md#op_/)
68+
6769
### Example: Create a `month_day`
6870
6971
```cpp
@@ -129,6 +131,8 @@ A `month_day` is valid if the month is valid and the day is less than or equal t
129131

130132
[`<chrono>`](chrono.md)\
131133
[`month` class](month-class.md)\
134+
[`month_day` class](month-day-class.md)\
132135
[`month_day_last` class](month-day-last-class.md)\
133136
[`month_weekday` class](month-weekday-class.md)\
134-
[`month_weekday_last` class](month-weekday-last-class.md)
137+
[`month_weekday_last` class](month-weekday-last-class.md)\
138+
[`operator/`](chrono-operators.md#op_/)

docs/standard-library/month-day-last-class.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
description: "Learn more about: month_day_last Class"
33
title: "month_day_last class"
4-
ms.date: "06/25/2021"
4+
ms.date: "06/28/2021"
55
f1_keywords: ["chrono/std::chrono::month_day_last", "chrono/std::chrono::month_day_last::month", "chrono/std::chrono::month_day_last::ok"]
66
helpviewer_keywords: ["std::chrono [C++], month_day_last"]
77
---
@@ -53,6 +53,10 @@ constexpr explicit month_day_last(const month& m) noexcept;
5353
*`m`*\
5454
Construct a `month_day_last` for the month specified by *`m`*.
5555
56+
## Remarks
57+
58+
For information about C++ 20 syntax used to specify dates, see [`operator/`](chrono-operators.md#op_/)
59+
5660
### Example: Create a `month_day_last`
5761
5862
```cpp
@@ -102,6 +106,9 @@ constexpr bool ok() const noexcept;
102106

103107
[`<chrono>`](chrono.md)\
104108
[`month` class](month-class.md)\
109+
[`month_day` class](month-day-class.md)\
105110
[`month_day_last` class](month-day-last-class.md)\
106111
[`month_weekday` class](month-weekday-class.md)\
107-
[`month_weekday_last` class](month-weekday-last-class.md)
112+
[`month_weekday_last` class](month-weekday-last-class.md)\
113+
[`operator/`](chrono-operators.md#op_/)
114+
[Header Files Reference](cpp-standard-library-header-files.md)

docs/standard-library/month-weekday-class.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
description: "Learn more about: month_weekday Class"
33
title: "month_weekday class"
4-
ms.date: "06/25/2021"
4+
ms.date: "06/28/2021"
55
f1_keywords: ["chrono/std::chrono::month_weekday", "chrono/std::chrono::month_weekday::weekday", "chrono/std::chrono::month_weekday::month", "chrono/std::chrono::month_weekday::ok", "chrono/std::chrono::month_weekday::weekday_indexed"]
66
helpviewer_keywords: ["std::chrono [C++], month_weekday"]
77
---
@@ -61,6 +61,10 @@ Construct a `month_weekday` with a month value of *`m`*.
6161
*`wdi`*\
6262
Construct a `month_weekday` with a weekday value of *`wdi`*.
6363
64+
## Remarks
65+
66+
For information about C++ 20 syntax to specify dates, see [`operator/`](chrono-operators.md#op_/)
67+
6468
### Example: Create a `month_weekday`
6569
6670
```cpp

docs/standard-library/month-weekday-last-class.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
description: "Learn more about: month_weekday_last Class"
33
title: "month_weekday_last class"
4-
ms.date: "6/25/2021"
4+
ms.date: "6/28/2021"
55
f1_keywords: ["chrono/std::chrono::month_weekday_last", "chrono/std::chrono::month_weekday_last::ok", "std::chrono::month_weekday_last::month_weekday_last", "chrono/std::chrono::month_weekday_last::ok", "chrono/std::chrono::month_weekday_last::month"]
66
helpviewer_keywords: ["std::chrono [C++], month_weekday_last"]
77
---
@@ -60,6 +60,10 @@ The `month` value for the created `month_weekday_last` class.
6060
*`wdl`*\
6161
The` weekday_last` value for the created `month_weekday_last` class.
6262
63+
## Remarks
64+
65+
For information about C++ 20 syntax to specify dates, see [`operator/`](chrono-operators.md#op_/)
66+
6367
### Example: Create a `month_weekday_last`
6468
6569
```cpp
@@ -130,4 +134,5 @@ The `weekday_last` value.
130134
[`month` class](month-class.md)\
131135
[`month_day` class](month-day-class.md)\
132136
[`month_day_last` class](month-day-last-class.md)\
133-
[`month_weekday` class](month-weekday-class.md)
137+
[`month_weekday` class](month-weekday-class.md)\
138+
[`operator/`](chrono-operators.md#op_/)

docs/standard-library/toc.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -158,14 +158,16 @@
158158
href: ../standard-library/duration-values-structure.md
159159
- name: hh_mm_ss class
160160
href: ../standard-library/hhmmss-class.md
161+
- name: high_resolution_clock struct
162+
href: high-resolution-clock-struct.md
161163
- name: leap_second class
162164
href: ../standard-library/leap-second-class.md
163165
- name: leap_second_info struct
164166
href: ../standard-library/leap-second-info-struct.md
165167
- name: month class
166168
href: ../standard-library/month-class.md
167169
- name: month_day class
168-
href: ../standard-library/month-day-class.md
170+
href: ../standard-library/month-day-class.md
169171
- name: month_day_last class
170172
href: ../standard-library/month-day-last-class.md
171173
- name: month_weekday class
@@ -184,10 +186,10 @@
184186
href: ../standard-library/treat-as-floating-point-structure.md
185187
- name: weekday class
186188
href: weekday-class.md
187-
- name: weekday_last class
188-
href: weekdaylast-class.md
189189
- name: weekday_indexed
190190
href: weekdayindexed-class.md
191+
- name: weekday_last class
192+
href: weekdaylast-class.md
191193
- name: year class
192194
href: year-class.md
193195
- name: year_month class

docs/standard-library/weekdaylast-class.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
description: "Learn more about: weekday_last Class"
33
title: "weekday_last class"
4-
ms.date: "06/25/2021"
4+
ms.date: "06/28/2021"
55
f1_keywords: ["chrono/std::chrono::weekday_last", "chrono/std::chrono::weekday_last::ok", "std::chrono::weekday_last::weekday", "chrono/std::chrono::weekday_last::ok", "chrono/std::chrono::weekday_last::weekday"]
66
helpviewer_keywords: ["std::chrono [C++], weekday_last"]
77
---
@@ -116,7 +116,7 @@ Mon
116116

117117
## See also
118118

119+
[`<chrono>`](chrono.md)\
119120
[`weekday` class](weekday-class.md)\
120121
[`weekday_indexed` class](weekdayindexed-class.md)\
121-
[`<chrono>`](chrono.md)\
122122
[Header Files Reference](cpp-standard-library-header-files.md)

docs/standard-library/year-class.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
description: "Learn more about: year Class"
33
title: "year class"
4-
ms.date: "06/25/2021"
4+
ms.date: "06/28/2021"
55
f1_keywords: ["chrono/std::chrono::year", "chrono/std::chrono::year::operator++", "chrono/std::chrono::year::operator--", "chrono/std::chrono::year::operator+=", "chrono/std::chrono::year::operator-=", "chrono/std::chrono::year::operator int", "chrono/std::chrono::year::is_leap", "chrono/std::chrono::year::max", "chrono/std::chrono::min", "chrono/std::chrono::year::ok"]
66
helpviewer_keywords: ["std::chrono [C++], year"]
77
---
@@ -378,10 +378,10 @@ int main()
378378

379379
## See also
380380

381+
[`<chrono>`](chrono.md)\
381382
[`year_month`](year-month-class.md)\
382383
[`year_month_day`](year-month-day-class.md)\
383384
[`year_month_day_last`](year-month-day-last-class.md)\
384385
[`year_month_weekday`](year-month-weekday-class.md)\
385386
[`year_month_weekday_last`](year-month-weekday-last-class.md)\
386-
[`<chrono>`](chrono.md)\
387387
[Header Files Reference](cpp-standard-library-header-files.md)

docs/standard-library/year-month-class.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
description: "Learn more about: year_month class"
33
title: "year_month class"
4-
ms.date: "06/25/2021"
4+
ms.date: "06/28/2021"
55
f1_keywords: ["chrono/std::chrono::year_month", "chrono/std::chrono::year::operator+=", "chrono/std::chrono::year::operator-=", "chrono/std::chrono::year::ok"]
66
helpviewer_keywords: ["std::chrono [C++], year_month"]
77
---
@@ -67,6 +67,8 @@ The [`month`](month-class.md) value.
6767
1\) The default constructor doesn't initialize the `year` or `month` value.\
6868
2\) Construct a `year_month` with the specified values.
6969
70+
For information about C++ 20 syntax to specify dates, see [`operator/`](chrono-operators.md#op_/)
71+
7072
### Example: Create a `year_month`
7173
7274
```cpp
@@ -227,10 +229,11 @@ int main()
227229

228230
## See also
229231

232+
[`<chrono>`](chrono.md)\
230233
[`year`](year-class.md)]\
231234
[`year_month_day`](year-month-day-class.md)\
232235
[`year_month_day_last`](year-month-day-last-class.md)\
233236
[`year_month_weekday`](year-month-weekday-class.md)\
234237
[`year_month_weekday_last`](year-month-weekday-last-class.md)\
235-
[`<chrono>`](chrono.md)\
238+
[`operator/`](chrono-operators.md#op_/)\
236239
[Header Files Reference](cpp-standard-library-header-files.md)

docs/standard-library/year-month-day-class.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
description: "Learn more about: year_month_day class"
33
title: "year_month_day class"
4-
ms.date: "06/25/2021"
4+
ms.date: "06/28/2021"
55
f1_keywords: ["chrono/std::chrono::year_month_day", "chrono/std::chrono::year::operator+=", "chrono/std::chrono::year::operator-=", "chrono/std::chrono::year::ok"]
66
helpviewer_keywords: ["std::chrono [C++], year_month_day"]
77
---
@@ -85,6 +85,8 @@ A `year_month_day_last` value.
8585
4\) Constructs a `year_month_day`with the same date as *`dp`*.\
8686
5\) Constructs a `year_month_day`with the same date as *`dp`* but as though constructed by `year_month_day(sys_days(dp.time_since_epoch()))`.
8787
88+
For information about C++ 20 syntax used to specify dates, see [`operator/`](chrono-operators.md#op_/)
89+
8890
### Example: Create a `year_month_day`
8991
9092
```cpp
@@ -284,10 +286,11 @@ int main()
284286

285287
## See also
286288

289+
[`<chrono>`](chrono.md)\
287290
[`year`](year-class.md)]\
288291
[`year_month`](year-month-class.md)\
289292
[`year_month_day_last`](year-month-day-last-class.md)\
290293
[`year_month_weekday`](year-month-weekday-class.md)\
291294
[`year_month_weekday_last`](year-month-weekday-last-class.md)\
292-
[`<chrono>`](chrono.md)\
295+
[`operator/`](chrono-operators.md#op_/)\
293296
[Header Files Reference](cpp-standard-library-header-files.md)

docs/standard-library/year-month-day-last-class.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
description: "Learn more about: year_month_day_last class"
33
title: "year_month_day_last class"
4-
ms.date: "06/25/2021"
4+
ms.date: "06/28/2021"
55
f1_keywords: ["chrono/std::chrono::year_month_day_last", "chrono/std::chrono::year::operator+=", "chrono/std::chrono::year::operator-=", "chrono/std::chrono::year::ok"]
66
helpviewer_keywords: ["std::chrono [C++], year_month_day_last"]
77
---
@@ -67,6 +67,10 @@ The month value from the [`month_day_last`](month-day-last-class.md) is stored i
6767
*`y`*\
6868
The [`year`](year-class.md) value is stored in the constructed `year_month_day_last`.
6969
70+
## Remarks
71+
72+
For information about C++ 20 syntax used to specify dates, see [`operator/`](chrono-operators.md#op_/)
73+
7074
### Example: Create a `year_month_day_last`
7175
7276
```cpp
@@ -318,10 +322,11 @@ int main()
318322

319323
## See also
320324

325+
[`<chrono>`](chrono.md)\
321326
[`year`](year-class.md)]\
322327
[`year_month`](year-month-class.md)\
323328
[`year_month_day`](year-month-day-class.md)\
324329
[`year_month_weekday`](year-month-weekday-class.md)\
325330
[`year_month_weekday_last`](year-month-weekday-last-class.md)\
326-
[`<chrono>`](chrono.md)\
331+
[`operator/`](chrono-operators.md#op_/)\
327332
[Header Files Reference](cpp-standard-library-header-files.md)

docs/standard-library/year-month-weekday-class.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
description: "Learn more about: year_month_weekday class"
33
title: "year_month_weekday class"
4-
ms.date: "06/24/2021"
4+
ms.date: "06/28/2021"
55
f1_keywords: ["chrono/std::chrono::year_month_weekday", "chrono/std::chrono::year_month_weekday::weekday", "chrono/std::chrono::year_month_weekday::month", "chrono/std::chrono::year_month_weekday::index", "chrono/std::chrono::year_month_weekday::year", "chrono/std::chrono::year_month_weekday::weekday_indexed", "chrono/std::chrono::year_month_weekday::sys_days", "chrono/std::chrono::year_month_weekday::local_days", "chrono/std::chrono::year_month_weekday::ok", "chrono/std::chrono::year_month_weekday::operator+=", "chrono/std::chrono::year_month_weekday::operator-="]
66
helpviewer_keywords: ["std::chrono [C++], year_month_weekday"]
77
---
@@ -95,6 +95,8 @@ The [`year`] value.
9595
9696
4\) Constructs a `year_month_weekday` that corresponds to the date represented by *`dp`*. For any `year_month_weekday` for which `ok()` is `true`, `year_month_weekday{sys_days{ymdl}}` is `true`.
9797
98+
For information about C++ 20 syntax used to specify dates, see [`operator/`](chrono-operators.md#op_/)
99+
98100
### Example: Create a `year_month_weekday`
99101
100102
```cpp
@@ -314,10 +316,11 @@ The [`year`](year-class.md) value.
314316

315317
## See also
316318

319+
[`<chrono>`](chrono.md)\
317320
[`year`](year-class.md)\
318321
[`year_month`](year-month-class.md)\
319322
[`year_month_day`](year-month-day-class.md)\
320323
[`year_month_day_last`](year-month-day-last-class.md)\
321324
[`year_month_weekday_last`](year-month-weekday-last-class.md)\
322-
[`<chrono>`](chrono.md)\
325+
[`operator/`](chrono-operators.md#op_/)
323326
[Header Files Reference](cpp-standard-library-header-files.md)

docs/standard-library/year-month-weekday-last-class.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
description: "Learn more about: year_month_weekday_last class"
33
title: "year_month_weekday_last class"
4-
ms.date: "06/25/2021"
4+
ms.date: "06/28/2021"
55
f1_keywords: ["chrono/std::chrono::year_month_weekday_last", "chrono/std::chrono::year_month_weekday_last::month", "chrono/std::chrono::year_month_weekday_last::year", "chrono/std::chrono::year_month_weekday_last::weekday_last", "chrono/std::chrono::year_month_weekday_last::sys_days", "chrono/std::chrono::year_month_weekday_last::local_days", "chrono/std::chrono::year_month_weekday_last::ok", "chrono/std::chrono::year_month_weekday_last::operator+=", "chrono/std::chrono::year_month_weekday_last::operator-="]
66
helpviewer_keywords: ["std::chrono [C++], year_month_weekday_last"]
77
---
@@ -73,6 +73,10 @@ The [`weekday_last`](weekdaylast-class.md) value.
7373
*`y`*\
7474
The [`year`](year-class.md) value.
7575
76+
## Remarks
77+
78+
For information about C++ 20 syntax used to specify dates, see [`operator/`](chrono-operators.md#op_/)
79+
7680
### Example: Create a `year_month_weekday_last`
7781
7882
```cpp
@@ -280,10 +284,11 @@ The [`year`](year-class.md) value.
280284

281285
## See also
282286

287+
[`<chrono>`](chrono.md)\
283288
[`year`](year-class.md)\
284289
[`year_month`](year-month-class.md)\
285290
[`year_month_day`](year-month-day-class.md)\
286291
[`year_month_day_last`](year-month-day-last-class.md)\
287292
[`year_month_weekday`](year-month-weekday-class.md)\
288-
[`<chrono>`](chrono.md)\
293+
[`operator/`](chrono-operators.md#op_/)\
289294
[Header Files Reference](cpp-standard-library-header-files.md)

0 commit comments

Comments
 (0)