µEvLoop
A fast and lightweight event loop aimed at embedded platforms in C99.
|
Conditionals are constructs that provide functional flow control. More...
Data Fields | |
uel_closure_t | test |
A closure that, based on its input, should return true or false . | |
uel_closure_t | if_true |
The closure that will be invoked if the test closure returns true | |
uel_closure_t | if_false |
The closure that will be invoked if the test closure returns false | |
Conditionals are constructs that provide functional flow control.
A conditional is defined by a tuple <test, if_true, if_false> of closures. When applied to some input, this input is passed to the test
closure. Based on its returned value, one of the other closures is invoked.