- Tumbleweed 2024.07.05-1.3
 - Leap-16.0
 - Leap-15.6
 
| std::chrono::local_t(3) | C++ Standard Libary | std::chrono::local_t(3) | 
NAME¶
std::chrono::local_t - std::chrono::local_t
Synopsis¶
 Defined in header <chrono>
  
   struct local_t {}; (since C++20)
  
   The class local_t is a pseudo-clock that is used as the first template
    argument to
  
   std::chrono::time_point to indicate that the time point represents local time
    with
  
   respect of a not-yet-specified time zone. local_time supports streaming and
    the full
  
   set of time point arithmetic.
  
   Time point family
  
   Defined in namespace std::chrono
  
   template<class Duration>
  
   using local_time = std::chrono::time_point<std::chrono::local_t, (since
    C++20)
  
   Duration>;
  
   using local_seconds = local_time<std::chrono::seconds>; (since
    C++20)
  
   using local_days = local_time<std::chrono::days>; (since
  C++20)
  
   operator<<(std::chrono::local_time) performs stream output on a
    local_time
  
   (C++20) (function template)
  
   from_stream(std::chrono::local_time) parses a local_time from a stream
    according
  
   (C++20) to the provided format
  
   (function template)
  
   std::formatter<std::chrono::local_time> formatting support for
    local_time
  
   (C++20) (class template specialization)
See also¶
 zoned_time represents a time zone and a time point
  
   (C++20) (class)
| 2024.06.10 | http://cppreference.com |