escaping

@escaping in Swift

In Swift, the @escaping keyword is used to indicate that a closure (a block of code that can be passed around and executed at a later time) may be called after the function it was passed to has completed execution.…