in reply to Re^2: Operator held in scalar/array element
in thread Operator held in scalar/array element

sub { -e $_[0] }
is short for
sub { my ($file) = @_; -e $file }

I hope that clarifies things.