I need to make a function in scala that, given a range of dates, gives me a list of the range. I am relatively new in Scala and I am not able to figure out how to write the righ
val numberOfDays = Days.daysBetween(from, until).getDays() for (f<- 0 to numberOfDays) yield from.plusDays(f)