Once more..I didn't see anything in the docs to prevent this 'cartesian product' effect. If I do this:
my $dt_r = DateTime::Event::Recurrence->daily(
days => [1, 3],
hours => [10, 16],
minutes => [0, 30]);
I get the following events on Monday and Wednesday:
10:00
10:30
16:00
16:30
Is it possible to get just:
10:00
16:30
on Mon and Wed using only 1 D:E:R object?
Thanks,
Matthew
