Note for all following functions, data type are not checked. So callee need to perform the data type check and call the correct SetXXX function. If we already know this is a bool vp, we can set bool directly without constructing a data value struct.
(offset int, val bool, valid bool)
| 165 | |
| 166 | // If we already know this is a bool vp, we can set bool directly without constructing a data value struct. |
| 167 | SetBool(offset int, val bool, valid bool) |
| 168 | // Set value via a unsafe.Pointer directly. |
| 169 | SetValue(offset int, val unsafe.Pointer, valid bool) |
| 170 | // Set go value directly. |
no outgoing calls
no test coverage detected