in reply to Re^2: How best to tell when my hash is "full" (all values defined)?in thread How best to tell when my hash is "full" (all values defined)?
Yes. It should be
keys( %hash ) == grep defined, values( %hash ) [download]
(which can be simplified).