(m map[string]any)
| 241 | } |
| 242 | |
| 243 | func (c *Client) SetAtomVals(m map[string]any) { |
| 244 | for k, v := range m { |
| 245 | c.Root.SetAtomVal(k, v, true) |
| 246 | } |
| 247 | } |
| 248 | |
| 249 | func (c *Client) SetAtomVal(name string, val any) { |
| 250 | c.Root.SetAtomVal(name, val, true) |
nothing calls this directly
no test coverage detected