Conditionals boundary default¶
Conditionals boundaries modify the boundary of a conditional, which means that exclusive/inclusive ranges will be inverted.
Mutation table¶
| Original | Mutated | 
|---|---|
| > | >= | 
| >= | > | 
| < | <= | 
| <= | < | 
Examples¶
if a > b {
  // Do something
}
if a >= b {
  // Do something
}