Help for this page
if( grep $_, @opts{qw|a b c|}) { }
if( grep $opts{$_}, qw|a b c|) { }
if( !grep !$opts{$_}, qw|a b c|) { }