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

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

The newest version!
@file:JsExport

package krono

import kotlinx.JsExport

enum class DayOfWeek {
    SUNDAY,
    MONDAY,
    TUESDAY,
    WEDNESDAY,
    THURSDAY,
    FRIDAY,
    SATURDAY;

    val number get() = ordinal + 1
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy