#CleanCode favors clarity of names over "spoken language" grammer, right?
so I called a method:
is_order_has_a_recipient
(while the grammer of the spoken laguage would suggest has_order_a_recipient )
is_[something] -> returns true or false.
I do NOT want to introduce another prefix ( has_ ) which would do the same.
Any thoughts?
(my context is #abap / #CleanAbap but I think the point is generic )
