Author: Chris Lattner
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
class Debouncer { | |
/** | |
Create a new Debouncer instance with the provided time interval. | |
- parameter timeInterval: The time interval of the debounce window. | |
*/ | |
init(timeInterval: TimeInterval) { |