August 1999 | Return to the Perl Hardware Store | Slide #9 |
Fastest solution:
@is_expert{@experts} = ();
Caution: You will have to use
if (exists $is_expert{$x}) { ... }
instead of
if ($is_expert{$x}) { ... }
(This is more efficient anyway.)
Next | ![]() |
Copyright © 1999 M-J. Dominus |