Skip to content

Instantly share code, notes, and snippets.

View idelfonsog2's full-sized avatar
🌏
Somewhere beyond the sea

Idelfonso Gutierrez idelfonsog2

🌏
Somewhere beyond the sea
View GitHub Profile
public extension Int {
public var seconds: DispatchTimeInterval {
return DispatchTimeInterval.seconds(self)
}
public var second: DispatchTimeInterval {
return seconds
}