I\'m looking for a better way to do
if hash.key? :a && hash.key? :b && hash.key? :c && hash.key? :d
prefer
%i[a b c d].all? {|s| hash.key? s}