Created
September 15, 2018 05:22
-
-
Save Tea-Ayataka/ffbeabb739f1d52a301062a1b5c2410c to your computer and use it in GitHub Desktop.
Kotlin TimeUnits
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
fun Int.seconds() = this.toLong() * 1000 | |
fun Int.minutes() = this.toLong() * 1000 * 60 | |
fun Int.hours() = this.toLong() * 1000 * 60 * 60 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment