jsMain.LfLong.kt Maven / Gradle / Ivy
package pt.lightweightform.lfkotlin
/** [LfLong] is represented as a "number" in JS. */
public actual typealias LfLong = Double
public actual fun Long.toLfLongImpl(): LfLong = this.toDouble()
public actual fun LfLong.toLongImpl(): Long = this.toLong()
© 2015 - 2025 Weber Informatics LLC | Privacy Policy