Быстрое закрытие как параметр функции

// define a function
func grabLunch(search: () -> ()) {
  …
  // closure call
  search()  
}
SAMER SAEID