Overall Index -- Gregorian Index -- Posix Time Index
Introduction -- Header -- Class Overview
#include "boost/date_time/gregorian/gregorian.hpp" //include all types plus i/o or #include "boost/date_time/gregorian/gregorian_types.hpp" //no i/o just types
Class | Construction Parameters | Description |
---|---|---|
date_iterator | 全ての日付単位イテレータに共通な基底クラス | |
day_iterator | date start_date, int day_count=1 | day_count 日単位で反復する |
week_iterator | date start_date, int week_offset=1 | week_offset 週単位で反復する |
month_iterator | date start_date, int month_offset=1 | month_offset 月単位で反復する。 月末の取り扱いについては、特別な規則がある。 それは、最初の日が月の最終日であるときは、常にその月の最終日に合わせて調整されるというものである。 日付がその月末を越えている場合(例: 1月31日+1ヶ月)、月の最終日に合わせて調整される。 |
year_iterator | date start_date, int year_offset=1 | year_offset 年単位で反復する |