[#absl-ToChronoTime] = xref:absl.adoc[absl]::ToChronoTime :relfileprefix: ../ :mrdocs: Converts an absl::Time to a std::chrono::system_clock::time_point. If overflow would occur, the returned value will saturate at the min/max time point value instead. == Synopsis Declared in `<absl/time/time.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- std::chrono::system_clock::time_point ToChronoTime(xref:absl/Time.adoc[Time] t); ---- == Description Example: absl::Time t = absl::FromTimeT(123); auto tp = absl::ToChronoTime(t); // tp == std::chrono::system_clock::from_time_t(123); == Return Value The equivalent system‐clock time point. == Parameters [cols="1,4"] |=== | Name| Description | *t* | The time to convert. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#