std::chrono::zoned_time
的推导指南
来自 cppreference.com
< cpp | chrono | zoned time
zoned_time() -> zoned_time<std::chrono::seconds>; |
(1) | (自 C++20) |
template< class Duration > zoned_time( std::chrono::sys_time<Duration> ) |
(2) | (自 C++20) |
template< class TimeZonePtrOrName > zoned_time( TimeZonePtrOrName&& ) -> zoned_time<std::chrono::seconds, /* 请参见下文 */>; |
(3) | (自 C++20) |
template< class TimeZonePtrOrName, class Duration > zoned_time( TimeZonePtrOrName&&, std::chrono::sys_time<Duration> ) |
(4) | (自 C++20) |
template< class TimeZonePtrOrName, class Duration > zoned_time( TimeZonePtrOrName&&, std::chrono::local_time<Duration>, |
(5) | (自 C++20) |
template< class TimeZonePtrOrName, class Duration, class TimeZonePtr2 > zoned_time( TimeZonePtrOrName&&, std::chrono::zoned_time<Duration, TimeZonePtr2>, |
(6) | (自 C++20) |
这些推导指南将 Duration
规范化为 std::chrono::seconds 的最小分辨率,并为使用可转换为 std::string_view 的类型指定的时区名称提供正确的处理。
3-6) 如果 std::is_convertible_v<TimeZonePtrOrName, std::string_view> 为 true,推断的第二个模板参数为 const std::chrono::time_zone*。否则为 std::remove_cvref_t<TimeZonePtrOrName>。