How to represent nesting of conditionals in sequence diagram? The image as given in this SO post depicts if/else:
How could I cater for the following:
if(a == 1 && b == 3) {
}else {
}
I need to represent multiple boolean conditions. I could not find anywhere that taught me to represent this.