[#absl-Time-2constructor-02] = xref:absl.adoc[absl]::xref:absl/Time.adoc[Time]::Time :relfileprefix: ../../ :mrdocs: Constructs a `Time` representing the Unix epoch. == Synopsis Declared in `<absl/time/time.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- constexpr Time() = default; ---- == Description Returns the Unix epoch. However, those reading your code may not know or expect the Unix epoch as the default value, so make your code more readable by explicitly initializing all instances before use. Example: absl::Time t = absl::UnixEpoch(); absl::Time t = absl::Now(); absl::Time t = absl::TimeFromTimeval(tv); absl::Time t = absl::InfinitePast(); [.small]#Created with https://www.mrdocs.com[MrDocs]#