We have Date.range/3 that allows steps to jump ahead, but this won't work on long time periods.
What I need is to be able to do for month <- Date.range(start, end) , by default it returns days. Is there a way of doing this without adding dependencies?
I could of course build my own function that takes the date and uses days_in_month to move ahead, but if there's a way of doing it that is already supported in the language that is of course preferable.