# File lib/map_reduce.rb, line 111
  def base_type
    check_type = @type
    type_found = false
    while check_type.superclass
      if @@types.include?(check_type)
        return check_type
      else
        check_type = check_type.superclass
      end
    end
  end