# File lib/apipie_bindings/inflector.rb, line 72
    def clear(scope = :all)
      case scope
        when :all
          @plurals, @singulars, @uncountables, @humans = [], [], [], []
        else
          instance_variable_set "@#{scope}", []
      end
    end