in reply to Re: Conditional idiom : "if X equals Y or Z" ??
in thread Conditional idiom : "if X equals Y or Z" ??
But using a hash leads to one solution:
my %match = map {$_ => 1} qw /GetAll Make MakeOnly/; ... $_ -> {Suppress} = 1 if $match {$_ -> {Action}};
Abigail
|
|---|