Object
A custom implementation of Hash that allows us to access hash values using dot notation
@example Access the hash keys in the standard way or using dot notation
foo[:bar] => "baz" foo.bar => "baz"
# File lib/AWS.rb, line 46 def does_not_have?(key) self[key].nil? || self[key].to_s.empty? end
# File lib/AWS.rb, line 42 def has?(key) self[key] && !self[key].to_s.empty? end
Generated with the Darkfish Rdoc Generator 2.