MCPcopy Create free account
hub / github.com/apache/avro-rs / decode_long

Function decode_long

avro/src/decode.rs:37–39  ·  view source on GitHub ↗
(reader: &mut R)

Source from the content-addressed store, hash-verified

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

Callers 3

deserialize_big_decimalFunction · 0.85
decode_internalFunction · 0.85

Calls 2

zag_i64Function · 0.85
mapMethod · 0.45

Tested by 1