Guest User

Untitled

a guest
May 24th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. final class ExecuteOnce {
  2. typealias Work = () -> ()
  3. private var work: Work?
  4.  
  5. init(_ work: @escaping Work) {
  6. self.work = work
  7. }
  8.  
  9. func execute() {
  10. work?()
  11. work = nil
  12. }
  13. }
Add Comment
Please, Sign In to add comment