# File lib/occi4/helpers/comparators/categories.rb, line 6 def ==(obj) return false unless obj && obj.respond_to?(:to_a) self.to_a == obj.to_a end
# File lib/occi4/helpers/comparators/categories.rb, line 11 def eql?(obj) self == obj end
# File lib/occi4/helpers/comparators/categories.rb, line 15 def hash self.to_a.hash end