(data any, path Path, value any, opts *SetPathOpts)
| 222 | } |
| 223 | |
| 224 | func SetPathNoErr(data any, path Path, value any, opts *SetPathOpts) any { |
| 225 | ret, _ := SetPath(data, path, value, opts) |
| 226 | return ret |
| 227 | } |
| 228 | |
| 229 | func SetPath(data any, path Path, value any, opts *SetPathOpts) (any, error) { |
| 230 | if opts == nil { |