Beispiel #1
0
 bool is_neg_infinity()const
 {
   return(day.is_neg_infinity() || time_of_day.is_neg_infinity());
 }
Beispiel #2
0
 duration_type get_neg_offset(const date_type& d) const 
 {
   // fix compiler warnings
   d.year();
   return duration_type(-f_);
 }
Beispiel #3
0
 static bool is_dst_boundary_day(date_type d)
 {
   year_type y = d.year();
   return ((d == local_dst_start_day(y)) ||
           (d == local_dst_end_day(y)));
 }
Beispiel #4
0
 duration_type get_neg_offset(const date_type& d) const 
 {
   // fix compiler warnings
   d.year();
   return duration_type(-f_*calendar_type::days_in_week());
 }
 bool is_not_a_date_time()const
 {
   return(day.is_not_a_date() || time_of_day.is_not_a_date_time());
 }