MCPcopy Index your code
hub / github.com/Monibuca/engine / ReadN

Method ReadN

util/buffer.go:114–119  ·  view source on GitHub ↗
(n int)

Source from the content-addressed store, hash-verified

112}
113
114func (b *Buffer) ReadN(n int) Buffer {
115 l := b.Len()
116 r := (*b)[:n]
117 *b = (*b)[n:l]
118 return r
119}
120func (b *Buffer) ReadFloat64() float64 {
121 return math.Float64frombits(b.ReadUint64())
122}

Callers 7

ReadMethod · 0.95
ReadUint64Method · 0.95
ReadUint32Method · 0.95
ReadUint24Method · 0.95
ReadUint16Method · 0.95
ReadByteMethod · 0.95
SplitMethod · 0.95

Calls 1

LenMethod · 0.95

Tested by

no test coverage detected