# File lib/more/facets/matcher.rb, line 130
  def scan(text, &block)
    matches=[]
    block= lambda{ |md| matches << md } unless block
    internal_match(text,&block)
    matches
  end