Lets say I have the following condition:
if ( myList == null || myList.isEmpty() || xomeX == someY )
What is the order of the evaluation of these conditions? Left or right, right to left or random each time?
If the first one passes, then the others are ignored?