class SnippetFinder

def find_map(meth, *args)

def find_map(meth, *args)
  finder_types.find{|type|
    found = type.send(meth, *args)
    return found if found
  }
end