Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for a snapshot of the develop branch, built from commit adcd4c09f0.
PrevUpHomeNext

days

Duration representing a day (24 hours).

Synopsis

Defined in header <boost/mysql/days.hpp>

using days = std::chrono::duration< int, std::ratio< 3600 *24 > >;
Description

Suitable to represent the range of dates MySQL offers. May differ in representation from std::chrono::days in C++20.


PrevUpHomeNext