uce/site/doc/pages/2_DValue_set_bool.txt
2026-06-15 21:42:50 +00:00

18 lines
245 B
Plaintext

:sig
void DValue::set_bool(bool b)
:params
b : boolean value to store
return value : none
:see
0_DValue
2_DValue_to_bool
:content
Stores a boolean value, forwarding through references when possible.
```cpp
response["ok"].set_bool(true);
```