Re: Announce: DateTime-Format-Builder 0.25

2003-04-05 Thread Dave Rolsky
On Mon, 31 Mar 2003, Joshua Hoblitt wrote: > I started implementing all of ISO8601:2000 last night with Builder.pm. > After looking at the pod for awhile I started thinking that this could > be simplified [and optimized] a little if you don't mind dirtying the > namespace. > > Some POEish like thi

Re: Announce: DateTime-Format-Builder 0.25

2003-03-31 Thread Joshua Hoblitt
[From Builder.pm .25] A sample preprocessor (taken from DateTime::Format::ICal) looks like this: my $add_tz = sub { my %args = @_; my ($date, $p) = @args{qw( input parsed )}; . . . Iain, I started implem