makeDynBool()
Returns a dynamic field of bits.
Synopsis
dyn_bool makeDynBool([ bool x1, bool x2 ...]);
Parameters
Parameters | Meaning |
x1, x2, ... | Individual elements |
Return value
In the event of an error, an empty field is returned.
Description
Returns a dynamic field of bits with the elements x1, x2 and so on.
Example
main() { dyn_bool d; d=makeDynBool(true,false,true); } |
Assignment
Availability
CTRL