Skip site navigation (1)Skip section navigation (2)

FreeBSD Manual Pages

  
 
  

home | help
std::chrono::tzdb(3)	      C++ Standard Libary	  std::chrono::tzdb(3)

NAME
       std::chrono::tzdb - std::chrono::tzdb

Synopsis
	  Defined in header <chrono>
	  struct tzdb;		      (since C++20)

	  The  class  tzdb  represents	a copy of the IANA time	zone database.
       Users cannot
	  construct a tzdb and can only	obtain read-only access	to one via the
       free functions
	  std::chrono::get_tzdb_list and std::chrono::get_tzdb.

Member objects
	  Member object	Description
	  version	A std::string that contains the	version	of  the	 data-
       base
	  zones		 A sorted std::vector<std::chrono::time_zone> contain-
       ing description of
			time zones
	  links		A sorted std::vector<std::chrono::time_zone_link> con-
       taining
			description of alternative names of time zones (links)
	  leap_seconds	A  sorted  std::vector<std::chrono::leap_second>  con-
       taining description
			of leap	seconds

Member functions
	  locate_zone  locate a	time zone with the given name
		       (public member function)
	  current_zone return the local	time zone
		       (public member function)

http://cppreference.com		  2022.07.31		  std::chrono::tzdb(3)

Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=std::chrono::tzdb&sektion=3&manpath=FreeBSD+Ports+15.0>

home | help