# File lib/facet/crosscase.rb, line 212
  def self::findTargetMethods( *methodList )
    methodList.flatten.each {|meth|
      next if /(singleton_)?method_added/ =~ meth
      transformedName = transform( meth ) or next
      yield( meth, transformedName )
    }
  end