Skip to content
Snippets Groups Projects
Commit 20e2106d authored by Johan Schön's avatar Johan Schön
Browse files

Added more functions to class second

Rev: lib/modules/Calendar.pmod/Gregorian.pmod:1.11
parent 0c37e6bb
No related branches found
No related tags found
No related merge requests found
......@@ -1157,12 +1157,12 @@ class Second
array(string) greater()
{
return ({"minute"});
return ({"minute","hour","day","month","year"});
}
array(string) lesser()
{
return ({"second"});
return ({});
}
void create(int|object ... arg)
......@@ -1298,12 +1298,33 @@ class Second
return sprintf("%s:%02s",m->timeofyear(),name());
}
//-- more -----------------------------------------------------------
//-- greater --------------------------------------------------------
object minute()
{
return m;
}
object hour()
{
return minute()->hour();
}
object day()
{
return minute()->hour()->day();
}
object month()
{
return minute()->hour()->day()->month();
}
object year()
{
return minute()->hour()->day()->month()->year();
}
};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment