It might be a simple question, and I'm just curious.
There is a STOP button and it can be activated with two conditions: Stop if true and Continue if true.
Say, I want to exit a loop. To make this happen, I can do either "STOP -> Stop if true" or "STOP -> NOT -> Continue if true".
I see most of time "STOP -> NOT -> Continue if true" even though it adds one more step "NOT" function.
Is there any reason or just programmer prefers?
Thanks