Skip to content

Instantly share code, notes, and snippets.

View denniskeithgaso's full-sized avatar

Dennis Keith Gaso denniskeithgaso

View GitHub Profile
public extension Int {
public var seconds: DispatchTimeInterval {
return DispatchTimeInterval.seconds(self)
}
public var second: DispatchTimeInterval {
return seconds
}