NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
There's always the DateTime FAQ code... (Score:1)
Re:There's always the DateTime FAQ code... (Score:2)
The first of those solutions only works if you know the size of the intervals you want to partition into ahead of time. I want to deal with the general case: say I have two moments in time that are exactly 29 days, 3 hours, 1 minute, and 17 seconds apart, and I want to divide it into 8 equal intervals? (My next journal entry does reveal the solution, but I'm just responding to show that I'm dealing with a harder problem than your solution addressed.)
I think the same is true of the second solution. The crucial issue is how to perform meaningful math on a DateTime::Duration. And the real issue behind it is that I'm always dealing with durations that are the result of subtracting two DateTime objects, and the output of the overloaded subtraction operator is a DateTime::Duration that is basically useless for most of the purposes I want to use it for. The good news is there's a DateTime->subtract_datetime_absolute method that yields what I want and, in my opinion, should be what the subtraction operator overloads to.
J. David works really hard, has a passion for writing good software, and knows many of the world's best Perl programmers
Reply to This
Parent