class DBus::Data::Container
Contains one or more other values.
Attributes
For containers, the type varies among instances @see Base#type
Public Class Methods
Public Instance Methods
Source
# File lib/dbus/data.rb, line 538 def eql?(other) return false unless other.class == self.class other.exact_value.eql?(exact_value) end
Hash key equality See ruby-doc.org/core-3.0.0/Object.html#method-i-eql-3F Stricter than ==
(RSpec: eq), 1==1.0 but 1.eql(1.0)->false
Source
# File lib/dbus/data.rb, line 527 def exact_value @value end
@return something that is, or contains, {Data::Base}.
Er, this docs kinda sucks.