ISO8601: Added ::sameQuarter
This commit is contained in:
@@ -1574,6 +1574,13 @@ bool ISO8601d::sameMonth (const ISO8601d& rhs) const
|
||||
this->month () == rhs.month ();
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
bool ISO8601d::sameQuarter (const ISO8601d& rhs) const
|
||||
{
|
||||
return (this->year () == rhs.year ()) &&
|
||||
((this->month () - 1) / 4) == ((rhs.month () - 1) / 4);
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
bool ISO8601d::sameYear (const ISO8601d& rhs) const
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user