class SnippetFinder

def find_map(meth, *args)

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