
walkmc.extensions.numbers.Times.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of walk-server Show documentation
Show all versions of walk-server Show documentation
A spigot fork to kotlin structure and news.
@file:Suppress("NOTHING_TO_INLINE")
package walkmc.extensions.numbers
import com.soywiz.klock.*
import java.util.Date
/**
* Converts this number as date.
*/
inline fun Number.toDate(): Date = Date(toLong())
/**
* Converts this number to a date time.
*/
inline fun Number.toDateTime(): DateTime = DateTime(toLong())
© 2015 - 2025 Weber Informatics LLC | Privacy Policy