A DESCRIPTION OF THE PROBLEM :
Proposal for an optional chaining operator "?". When used, it would short circuit the evaluation of a chain and return null. For example.
String name = cart?.getShippingAddress()?.getName();
In this case if cart is null or getShippingAddress() is null, name would be null and the rest of the chain would not be evaluated.
Proposal for an optional chaining operator "?". When used, it would short circuit the evaluation of a chain and return null. For example.
String name = cart?.getShippingAddress()?.getName();
In this case if cart is null or getShippingAddress() is null, name would be null and the rest of the chain would not be evaluated.