Given that I have these hashes:
h1 = {"a" => { "b" => 1, "c" => {"d" => 2, "e" => 3} } }
h2 = {"a" => { "b" => 1, "c" => nil } }
And I want these results:
h1.multi_all? # true
h2.multi_all? # false
How would I implement the multi_all method?