``` fun List<LocalDateTime>.min(): LocalDate...
# functional
r
Copy code
fun List<LocalDateTime>.min(): LocalDateTime? = if (this.isEmpty) null else this.reduce { a, b -> a.minBy(b) }