(value *bool)
| 6048 | } |
| 6049 | |
| 6050 | func cloneBoolPtr(value *bool) *bool { |
| 6051 | if value == nil { |
| 6052 | return nil |
| 6053 | } |
| 6054 | cloned := *value |
| 6055 | return &cloned |
| 6056 | } |
| 6057 | |
| 6058 | func cloneRawMessagePtr(value *json.RawMessage) *json.RawMessage { |
| 6059 | if value == nil { |