(b []byte, p unsafe.Pointer)
| 125 | return AppendMapInterfaceInterface(b, *(*map[any]any)(p), e.flags) |
| 126 | } |
| 127 | func (e encoder) encodeMapStringInterface(b []byte, p unsafe.Pointer) ([]byte, error) { |
| 128 | return AppendMapStringInterface(b, *(*map[string]any)(p), e.flags) |
| 129 | } |
| 130 | func (e encoder) encodeMapStringRawMessage(b []byte, p unsafe.Pointer) ([]byte, error) { |
| 131 | return nil, fmt.Errorf("not implemented") |
| 132 | } |
nothing calls this directly
no test coverage detected