Remix.run Logo
tsimionescu 2 hours ago

The whole point of using Optional/Maybe is to prevent the possibility of accidemtally creating nulls. If you don't make mistakes, then nullability is not a problem. If you do make mistakes, then a class that only helps when you don't make mistakes is basically useless.

This also has significant impact for serialization/de serialization - a classic place where you get unexpected nulls, that Java Optional/Maybe don't help with at all.

joe_mwangi 15 minutes ago | parent [-]

Since they plan to have null-restricted types, then I don't see any issue.