* Val Schmidt ([EMAIL PROTECTED]) [27 Aug 2003 02:00]:
> I searched around a bit and haven't been able to find a way to create
> a datetime object with the year and day of year, instead of year,
> month, day of month.

    my $dt = DateTime->from_day_of_year(
        year => $year,
        day_of_year => $yday,
    );

It is documented.

Hope that helps,


cheers,
-- 
Iain.

Reply via email to