robin
01/20/2017, 8:24 PMval moments: List<ListItem> = moments
.groupBy { it.timePosted!!.toLocalDate().withDayOfMonth(1) }
.map { it.key to it.value.map { ListItem.MomentItem(it) } }
.flatMap { listOf(ListItem.HeaderItem(it.first)) + it.second }
Now to clean this up quite a bit, lots of stuff in there I still don't like 😄