# File lib/types/array.rb, line 70
      def <=>(x)
        ret = [@type, @descriptor] <=> [x.type, x.descriptor]
        ret == 0 ? super : ret
      end