Deduction guides for std::chrono::zoned_time

From cppreference.com
< cpp‎ | chrono‎ | zoned time
 
 
Utilities library
General utilities
Date and time
Function objects
Formatting library (C++20)
(C++11)
Relational operators (deprecated in C++20)
Integer comparison functions
(C++20)(C++20)(C++20)   
(C++20)
Swap and type operations
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
Common vocabulary types
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)
Elementary string conversions
(C++17)
(C++17)
 
 
 
zoned_time() -> zoned_time<std::chrono::seconds>;
(1) (since C++20)
template< class Duration >

zoned_time( std::chrono::sys_time<Duration> )

    -> zoned_time<std::common_type_t<Duration, std::chrono::seconds>>;
(2) (since C++20)
template< class TimeZonePtrOrName >
zoned_time( TimeZonePtrOrName&& ) -> zoned_time<std::chrono::seconds, /* see below */>;
(3) (since C++20)
template< class TimeZonePtrOrName, class Duration >

zoned_time( TimeZonePtrOrName&&, std::chrono::sys_time<Duration> )

    -> zoned_time<std::common_type_t<Duration, std::chrono::seconds>, /* see below */>;
(4) (since C++20)
template< class TimeZonePtrOrName, class Duration >

zoned_time( TimeZonePtrOrName&&, std::chrono::local_time<Duration>,
           std::chrono::choose = std::chrono::choose::earliest )

    -> zoned_time<std::common_type_t<Duration, std::chrono::seconds>, /* see below */>;
(5) (since C++20)
template< class TimeZonePtrOrName, class Duration, class TimeZonePtr2 >

zoned_time( TimeZonePtrOrName&&, std::chrono::zoned_time<Duration, TimeZonePtr2>,
           std::chrono::choose = std::chrono::choose::earliest )

    -> zoned_time<std::common_type_t<Duration, std::chrono::seconds>, /* see below */>;
(6) (since C++20)

These deduction guides normalize Duration to a minimum resolution of std::chrono::seconds, and provide correct handling for time zone names specified using types convertible to std::string_view.

3-6) If std::is_convertible_v<TimeZonePtrOrName, std::string_view> is true, the deduced second template argument is const std::chrono::time_zone*. Otherwise it is std::remove_cvref_t<TimeZonePtrOrName>.