============================================================================ Typed Read Methods - Fastpath for codegen For primitive numeric types, use ctx.Buffer().ReadXXX() For strings, use ctx.ReadString() For slices/maps, use these methods which handle ref tracking ==============================
()
| 279 | |
| 280 | // ReadString reads a string value (caller handles nullable/type meta) |
| 281 | func (c *ReadContext) ReadString() string { |
| 282 | return readString(c.buffer, c.Err()) |
| 283 | } |
| 284 | |
| 285 | // ReadBoolSlice reads []bool with ref/type info |
| 286 | func (c *ReadContext) ReadBoolSlice(refMode RefMode, readType bool) []bool { |
no test coverage detected