# File lib/yard/generators/full_doc_generator.rb, line 109
      def methods_to_show(namespaces)
        meths = namespaces.inject([]) do |arr, namespace|
          next(arr) unless namespace.is_a?(CodeObjects::NamespaceObject)
          more_meths = namespace.meths(:included => false, :inherited => false)
          more_meths = more_meths.select {|object| object.is_explicit? }
          arr += more_meths
        end
        if options[:verifier]
          meths.reject! do |object|
            # FIXME we should be using call_verifier here, but visibility
            # is checked on the generator, not the object
            options[:verifier].call(object, object).is_a?(FalseClass)
          end
        end
        meths.sort_by {|object| object.path }
      end