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

PrevUpHomeNext

Class template years_duration

boost::date_time::years_duration — additional duration type that represents a logical year

Synopsis

// In header: <boost/date_time/date_duration_types.hpp>

template<typename base_config> 
class years_duration {
public:

  // public member functions
  years_duration(int_rep);
  years_duration(special_values);
  BOOST_CXX14_CONSTEXPR int_rep number_of_years() const;
  BOOST_CXX14_CONSTEXPR duration_type get_neg_offset(const date_type &) const;
  BOOST_CXX14_CONSTEXPR duration_type get_offset(const date_type &) const;
  BOOST_CXX14_CONSTEXPR bool operator==(const years_type &) const;
  bool operator!=(const years_type &) const;
  BOOST_CXX14_CONSTEXPR years_type operator+(const years_type &) const;
  BOOST_CXX14_CONSTEXPR years_type & operator+=(const years_type &);
  BOOST_CXX14_CONSTEXPR years_type operator-(const years_type &) const;
  BOOST_CXX14_CONSTEXPR years_type & operator-=(const years_type &);
  BOOST_CXX14_CONSTEXPR years_type operator*(const int_type) const;
  BOOST_CXX14_CONSTEXPR years_type & operator*=(const int_type);
  BOOST_CXX14_CONSTEXPR years_type operator/(const int_type) const;
  BOOST_CXX14_CONSTEXPR years_type & operator/=(const int_type);
  BOOST_CXX14_CONSTEXPR months_type operator+(const months_type &) const;
  BOOST_CXX14_CONSTEXPR months_type operator-(const months_type &) const;
};

Description

A logical year enables things like: "date(2002,Mar,2) + years(2) -> 2004-Mar-2". If the date is a last day-of-the-month, the result will also be a last-day-of-the-month (ie date(2001-Feb-28) + years(3) -> 2004-Feb-29).

years_duration public member functions

  1. years_duration(int_rep num);
  2. years_duration(special_values sv);
  3. BOOST_CXX14_CONSTEXPR int_rep number_of_years() const;
  4. BOOST_CXX14_CONSTEXPR duration_type get_neg_offset(const date_type & d) const;
    returns a negative duration
  5. BOOST_CXX14_CONSTEXPR duration_type get_offset(const date_type & d) const;
  6. BOOST_CXX14_CONSTEXPR bool operator==(const years_type & rhs) const;
  7. bool operator!=(const years_type & rhs) const;
  8. BOOST_CXX14_CONSTEXPR years_type operator+(const years_type & rhs) const;
  9. BOOST_CXX14_CONSTEXPR years_type & operator+=(const years_type & rhs);
  10. BOOST_CXX14_CONSTEXPR years_type operator-(const years_type & rhs) const;
  11. BOOST_CXX14_CONSTEXPR years_type & operator-=(const years_type & rhs);
  12. BOOST_CXX14_CONSTEXPR years_type operator*(const int_type rhs) const;
  13. BOOST_CXX14_CONSTEXPR years_type & operator*=(const int_type rhs);
  14. BOOST_CXX14_CONSTEXPR years_type operator/(const int_type rhs) const;
  15. BOOST_CXX14_CONSTEXPR years_type & operator/=(const int_type rhs);
  16. BOOST_CXX14_CONSTEXPR months_type operator+(const months_type & m) const;
  17. BOOST_CXX14_CONSTEXPR months_type operator-(const months_type & m) const;

PrevUpHomeNext