All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.krono.TemporalComparable.kt Maven / Gradle / Ivy

There is a newer version: 3.0.14
Show newest version
@file:JsExport

package krono

import kotlinx.JsExport

interface TemporalComparable : Comparable {
    fun isBefore(other: E): Boolean = this < other
    fun isAfter(other: E): Boolean = this > other
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy