| 9 | ) |
| 10 | |
| 11 | type mapperObject struct { |
| 12 | ZeroValue reflect.Value |
| 13 | DefaultTimeWrapper *TimeWrapper |
| 14 | typeWrappers []TypeWrapper |
| 15 | timeType reflect.Type |
| 16 | jsonTimeType reflect.Type |
| 17 | fieldNameMap sync.Map |
| 18 | registerMap sync.Map |
| 19 | setting *Setting |
| 20 | } |
| 21 | |
| 22 | func NewMapper(opts ...Option) IMapper { |
| 23 | setting := NewSetting(opts...) |
nothing calls this directly
no outgoing calls
no test coverage detected