if the specified condition is false then perform the specified action
None
on_not is a conditional without an else-part. It is therefor performed only for the side-effects of the action.
| std::on | if the specified condition is true then perform the specified action |
| std::if_not | can be used as a function or a procedure |
| std::if | classic if; can be used as a function or a procedure |
| std_types::false | performs the specified action |
| std_types::true | does not perform the specified action |