# File lib/grape/validations/types.rb, line 166
      def self.collection_of_custom?(type)
        (type.is_a?(Array) || type.is_a?(Set)) &&
          type.length == 1 &&
          custom?(type.first)
      end