So I know Joshua Hobblit has suggested
Astro::Calendrical::*
It kind of seemed like (because these functions are specifically to calculate dates) it belongs more to DateTime::* namespace. Is there a possibility to create a namespace for such "helper" modules, which are not directly related to datetime calculations?
2) The year nocation in CC uses sexagecimal cycles -- I'm not familiar with this -- do Chinese people really use it?
So interface-wise, I think this is the only additional function:
use DateTime::Calendar::Chinese; my $dt = DateTime::Calendar::Chinese->new( @the_usual_args );
$dt->cycle; $dt->is_chines_leap_year(); $dt->current_major_solar_term(); $dt->current_minor_solar_Term();
does that look good enough?
--d
