in reply to Conditional idiom : "if X equals Y or Z" ??

I think I would use:

my %suppress = map { $_ => 1 } qw(GetAll Make MakeOnly); for (@tabs) { $_->{Suppress} = 1 if exists $suppress{$_}; }

It's easy to read, fast and short.

-sam