MCPcopy Create free account
hub / github.com/brimdata/super / NewUint8

Function NewUint8

value.go:53–53  ·  view source on GitHub ↗
(u uint8)

Source from the content-addressed store, hash-verified

51
52func NewUint(t Type, u uint64) Value { return newNativeValue(t, u) }
53func NewUint8(u uint8) Value { return newNativeValue(TypeUint8, uint64(u)) }
54func NewUint16(u uint16) Value { return newNativeValue(TypeUint16, uint64(u)) }
55func NewUint32(u uint32) Value { return newNativeValue(TypeUint32, uint64(u)) }
56func NewUint64(u uint64) Value { return newNativeValue(TypeUint64, u) }

Callers

nothing calls this directly

Calls 1

newNativeValueFunction · 0.85

Tested by

no test coverage detected