MCPcopy Create free account
hub / github.com/ZeppelinMC/Zeppelin / Byte

Method Byte

protocol/net/io/encoding/reader.go:54–58  ·  view source on GitHub ↗
(i *int8)

Source from the content-addressed store, hash-verified

52}
53
54func (r Reader) Byte(i *int8) error {
55 d, err := r.readBytes(1)
56 *i = int8(d[0])
57 return err
58}
59func (r Reader) Ubyte(i *byte) error {
60 d, err := r.readBytes(1)
61 *i = d[0]

Callers 15

TextComponentMethod · 0.95
EncodeMethod · 0.45
DecodeMethod · 0.45
EncodeMethod · 0.45
DecodeMethod · 0.45
EncodeMethod · 0.45
DecodeMethod · 0.45
EncodeMethod · 0.45
DecodeMethod · 0.45
encodeNodeMethod · 0.45
EncodeMethod · 0.45
EncodeMethod · 0.45

Calls 1

readBytesMethod · 0.95

Tested by

no test coverage detected