ReadStringInt64Map reads map[string]int64 with optional ref/type info
(refMode RefMode, readType bool)
| 555 | |
| 556 | // ReadStringInt64Map reads map[string]int64 with optional ref/type info |
| 557 | func (c *ReadContext) ReadStringInt64Map(refMode RefMode, readType bool) map[string]int64 { |
| 558 | err := c.Err() |
| 559 | if refMode != RefModeNone { |
| 560 | if c.buffer.ReadInt8(err) == NullFlag { |
| 561 | return nil |
| 562 | } |
| 563 | } |
| 564 | if readType && !c.readExpectedTypeID(MAP) { |
| 565 | return nil |
| 566 | } |
| 567 | return readMapStringInt64(c) |
| 568 | } |
| 569 | |
| 570 | // ReadStringInt32Map reads map[string]int32 with optional ref/type info |
| 571 | func (c *ReadContext) ReadStringInt32Map(refMode RefMode, readType bool) map[string]int32 { |
no test coverage detected