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.
Example:
absl::Time t = absl::FromTimeT(123); auto tp = absl::ToChronoTime(t); // tp == std::chrono::system_clock::from_time_t(123);
The equivalent system-clock time point.
| Name | Description |
|---|---|
| t | The time to convert. |