(record *Record, modifierValue any)
| 247 | } |
| 248 | |
| 249 | func (f *SelectField) appendValue(record *Record, modifierValue any) { |
| 250 | val := record.GetRaw(f.Name) |
| 251 | |
| 252 | val = append( |
| 253 | list.ToUniqueStringSlice(val), |
| 254 | list.ToUniqueStringSlice(modifierValue)..., |
| 255 | ) |
| 256 | |
| 257 | f.setValue(record, val) |
| 258 | } |
| 259 | |
| 260 | func (f *SelectField) prependValue(record *Record, modifierValue any) { |
| 261 | val := record.GetRaw(f.Name) |
nothing calls this directly
no test coverage detected