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

io.data2viz.time.Second.kt Maven / Gradle / Ivy

package io.data2viz.time

class Second : Interval(
        fun (date:Date): Date {
            date.setMillisecond(0)
            return date
        },
        fun (date:Date, step:Long): Date {
            date.plusMilliseconds(step * durationSecond)
            return date
        },
        fun (start:Date, end:Date): Int {
            return (start.millisecondsBetween(end) / durationSecond).toInt()
        },
        fun (date:Date): Int {
            return date.second()
        }
)

val timeSecond = Second()




© 2015 - 2024 Weber Informatics LLC | Privacy Policy