| 32 | void operator= (const char *v) {FLSlot_SetString(_slot, slice(v));} |
| 33 | void operator= (const std::string &v) {FLSlot_SetString(_slot, slice(v));} |
| 34 | void setData(slice v) {FLSlot_SetData(_slot, v);} |
| 35 | void operator= (Value v) {FLSlot_SetValue(_slot, v);} |
| 36 | void operator= (std::nullptr_t) {FLSlot_SetValue(_slot, nullptr);} |
| 37 |
no test coverage detected