GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::chrono::time_zone::to_sys(3) C++ Standard Libary std::chrono::time_zone::to_sys(3)

std::chrono::time_zone::to_sys - std::chrono::time_zone::to_sys


template< class Duration >


auto to_sys(const std::chrono::local_time<Duration>& tp) const (since C++20)


-> std::chrono::sys_time<std::common_type_t<Duration,
std::chrono::seconds>>;
template< class Duration >


auto to_sys(const std::chrono::local_time<Duration>& tp,
std::chrono::choose z) const (since C++20)


-> std::chrono::sys_time<std::common_type_t<Duration,
std::chrono::seconds>>;


Converts the local_time tp in this time zone to the corresponding sys_time.


1) Throws an exception if the conversion is ambiguous or if tp represents a
nonexistent time.
2) Resolves ambiguity according to the value of z:


* If z == std::chrono::choose::earliest, returns the earlier sys_time.
* If z == std::chrono::choose::latest, returns the later sys_time


If tp represents a nonexistent time between two UTC time_points, those two
time_points will be the same, and that time_point will be returned.


The UTC equivalent of tp according to the rules of this time zone.


1) Throws a std::chrono::ambiguous_local_time if the conversion is ambiguous. Throws
a std::chrono::nonexistent_local_time if tp represents a nonexistent time.


The precision of the result is at least std::chrono::seconds, and will be finer if
the argument has finer precision.


Ambiguous and nonexistent local times can occur as a result of time zone transitions
(such as daylight saving time). For example, "2016-03-13 02:30:00" does not exist in
the "America/New_York" time zone, while "2016-11-06 01:30:00" in that time zone can
correspond to two UTC time points: 2016-11-06 05:30:00 UTC and 2016-11-06 06:30:00
UTC.

2022.07.31 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.