isolateFuncTwo function

void isolateFuncTwo(
  1. bool condition
)

purpose: roll function inside isolate nothing isolate here yet

Implementation

void isolateFuncTwo(bool condition) {
  bool _condition = condition;
  int i = 0;
  //  runs 5x  if  false
  do {
    // backdoor out:
    i++;
    if (i == 5) _condition = true;
  } while (!_condition);
}