Function entryLength [src]

The length of the entry including the ID field, but not the length field itself

Prototype

pub fn entryLength(self: EntryHeader) usize

Parameters

self: EntryHeader

Source

pub fn entryLength(self: EntryHeader) usize { return self.entry_bytes.len + @as(u8, if (self.format == .@"64") 8 else 4); }