(reader: &mut R)
| 35 | #[inline] |
| 36 | pub(crate) fn decode_long<R: Read>(reader: &mut R) -> AvroResult<Value> { |
| 37 | zag_i64(reader).map(Value::Long) |
| 38 | } |
| 39 | |
| 40 | #[inline] |
| 41 | fn decode_int<R: Read>(reader: &mut R) -> AvroResult<Value> { |
| 42 | zag_i32(reader).map(Value::Int) |