Reputation: 95
Can someone explain what does a question mark before an equal symbol mean?
lo_obj ?= <lo_kernel>.
Upvotes: 2
Views: 1045
Reputation: 61
?=
is used for explicit downcast. Although it is not required for character type but recommended to use for other data type to avoid any unexpected short dump.
The best way is to check if the data element has any Routine(i.e Conversion Exit).
Upvotes: 6