Dave Rolsky wrote:
>
> > About the timezone stuff, now you can use the Date::Set until() method
> > to join recurrences the way they are specified in rfc2445/Olson.
>
> Is this documented? Or is it in an as-yet-unreleased version?
It is a Set::Infinite method:
=head2 until
Extends a set until another:
0,5,7 -> until 2,6,10
gives
[0..2), [5..6), [7..10)
Note: this function is still experimental.
=cut
>
> I'm wondering if it might be better to just use a red-black tree
> internally in DateTime::TimeZone, because that might be better optimized
> for the specific problem at hand. I may give that a shot just for fun,
> since the current code can't work at all while Date::Set::ICal still uses
> epochs internally.
Ok. I'm interested in the results too.
- Fl�vio S. Glock