Next | The Perl Hardware Store | DC.pm Version | 46 |
Fastest solution:
@is_expert{@experts} = ();
Caution: You will have to use this:
if (exists $is_expert{$x}) { ... }
Instead of this:
if ($is_expert{$x}) { ... }
(But this is more efficient anyway.)
Next | Copyright © 2003 M. J. Dominus |