ReadInt32Int32Map reads map[int32]int32 with optional ref/type info
(refMode RefMode, readType bool)
| 625 | |
| 626 | // ReadInt32Int32Map reads map[int32]int32 with optional ref/type info |
| 627 | func (c *ReadContext) ReadInt32Int32Map(refMode RefMode, readType bool) map[int32]int32 { |
| 628 | err := c.Err() |
| 629 | if refMode != RefModeNone { |
| 630 | if c.buffer.ReadInt8(err) == NullFlag { |
| 631 | return nil |
| 632 | } |
| 633 | } |
| 634 | if readType && !c.readExpectedTypeID(MAP) { |
| 635 | return nil |
| 636 | } |
| 637 | return readMapInt32Int32(c) |
| 638 | } |
| 639 | |
| 640 | // ReadInt64Int64Map reads map[int64]int64 with optional ref/type info |
| 641 | func (c *ReadContext) ReadInt64Int64Map(refMode RefMode, readType bool) map[int64]int64 { |
no test coverage detected