A Time-only namespace?

2004-02-04 Thread Daisuke Maki
I'd like to rip out the traditional Japanese time support from
DT::C::Japanese and place it on its own module, so that a) I can use it
for Gregorian-based calendars and b) I can test it more thoroughly
(presumably it will be much faster, because I wouldn't have to worry
about calculating lunar/solar longitudes every time I want to test it :)

Now I noticed there isn't a namespace for this under DateTime. Is there
any namespace that is recommended? I guess it may not make sense to put
it under DateTime::, so would something like Time::Japanese work?

--d


Re: A Time-only namespace?

2004-02-04 Thread Matt Sisk
Daisuke Maki wrote:
Now I noticed there isn't a namespace for this under DateTime. Is there
any namespace that is recommended? I guess it may not make sense to put
it under DateTime::, so would something like Time::Japanese work?
I've always thought there should be support and functionality for 
'clocks' (DateTime::Clock::*) that do not have to be connected to a 
calendar.

I think the only thing that approaches this at the moment is 
DateTime::Incomplete.

Matt