From Jason Turner

[time.clock.file.overview]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmpnvn7lfow/{from.md → to.md} +17 -0
tmp/tmpnvn7lfow/{from.md → to.md} RENAMED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #### Overview <a id="time.clock.file.overview">[[time.clock.file.overview]]</a>
2
+
3
+ ``` cpp
4
+ namespace std::chrono {
5
+ using file_clock = see below;
6
+ }
7
+ ```
8
+
9
+ `file_clock` is an alias for a type meeting the *Cpp17TrivialClock*
10
+ requirements [[time.clock.req]], and using a signed arithmetic type for
11
+ `file_clock::rep`. `file_clock` is used to create the `time_point`
12
+ system used for `file_time_type` [[filesystems]]. Its epoch is
13
+ unspecified, and `noexcept(file_clock::now())` is `true`.
14
+
15
+ [*Note 1*: The type that `file_clock` denotes may be in a different
16
+ namespace than `std::chrono`, such as `std::filesystem`. — *end note*]
17
+