SetBool implements SetBool in LiveVectorParty interface
(offset int, val bool, valid bool)
| 34 | |
| 35 | // SetBool implements SetBool in LiveVectorParty interface |
| 36 | func (vp *cLiveVectorParty) SetBool(offset int, val bool, valid bool) { |
| 37 | vp.setValidity(offset, valid) |
| 38 | vp.values.SetBool(offset, val) |
| 39 | return |
| 40 | } |
| 41 | |
| 42 | // SetBool implements SetValue in LiveVectorParty interface |
| 43 | func (vp *cLiveVectorParty) SetValue(offset int, val unsafe.Pointer, valid bool) { |
nothing calls this directly
no test coverage detected