MCPcopy Create free account
hub / github.com/apache/fory / RawInt8

Method RawInt8

go/fory/writer.go:154–154  ·  view source on GitHub ↗
(v int8)

Source from the content-addressed store, hash-verified

152// Inline primitive writes (compiler will inline these)
153func (c *WriteContext) RawBool(v bool) { c.buffer.WriteBool(v) }
154func (c *WriteContext) RawInt8(v int8) { c.buffer.WriteByte_(byte(v)) }
155func (c *WriteContext) RawInt16(v int16) { c.buffer.WriteInt16(v) }
156func (c *WriteContext) RawInt32(v int32) { c.buffer.WriteInt32(v) }
157func (c *WriteContext) RawInt64(v int64) { c.buffer.WriteInt64(v) }

Callers

nothing calls this directly

Calls 1

WriteByte_Method · 0.80

Tested by

no test coverage detected