ReadInt64Int64Map reads map[int64]int64 with optional ref/type info
(refMode RefMode, readType bool)
| 639 | |
| 640 | // ReadInt64Int64Map reads map[int64]int64 with optional ref/type info |
| 641 | func (c *ReadContext) ReadInt64Int64Map(refMode RefMode, readType bool) map[int64]int64 { |
| 642 | err := c.Err() |
| 643 | if refMode != RefModeNone { |
| 644 | if c.buffer.ReadInt8(err) == NullFlag { |
| 645 | return nil |
| 646 | } |
| 647 | } |
| 648 | if readType && !c.readExpectedTypeID(MAP) { |
| 649 | return nil |
| 650 | } |
| 651 | return readMapInt64Int64(c) |
| 652 | } |
| 653 | |
| 654 | // ReadIntIntMap reads map[int]int with optional ref/type info |
| 655 | func (c *ReadContext) ReadIntIntMap(refMode RefMode, readType bool) map[int]int { |
no test coverage detected