names

A list of the names of weekdays in order from Monday to Sunday.

Samples

import kotlinx.datetime.*
import kotlinx.datetime.format.*
import kotlin.test.*

fun main() { 
   //sampleStart 
   // Obtaining the list of day of week names
check(DayOfWeekNames.ENGLISH_ABBREVIATED.names == listOf(
    "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"
)) 
   //sampleEnd
}