For arrow optics, is there a simpler way to "set f...
# arrow
d
For arrow optics, is there a simpler way to "set focus only if it's null" than what I do currently:
Copy code
ViewState.draft.nullableReminderAt.modify(state) { reminderAt -> 
  reminderAt ?: LocalTime.of(10, 0) 
}
a
not right now 😕
this is why in Arrow 2.0 we’re changing Optics generation for nullable types
d
I see, thanks! Arrow 2.0 is shaping up to have some really convenient features 🙂