in reply to Perl Best Practices
I can't find the Getopt::Clade on CPAN; am I looking in the wrong place?
Also, on page 151-152, I was disapointed not to find an example of GRT sorting; I know you mention it on page 164, but a roll-your-own example might help popularize this seemingly esoteric technique...
# Sort by SHA-512 digest of scripts # (optimized with Gutman-Rosler packed default sort) @sorted_scripts = map { substr($_, 64) } sort map { sha512($_) . $_ } @scripts;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Perl Best Practices
by TheDamian (Vicar) on Jul 22, 2005 at 21:07 UTC | |
by simonm (Vicar) on Jul 22, 2005 at 21:16 UTC |