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

Function NewUint32

value.go:55–55  ·  view source on GitHub ↗
(u uint32)

Source from the content-addressed store, hash-verified

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) }
57func NewInt(t Type, i int64) Value { return newNativeValue(t, uint64(i)) }
58func NewInt8(i int8) Value { return newNativeValue(TypeInt8, uint64(i)) }

Callers

nothing calls this directly

Calls 1

newNativeValueFunction · 0.85

Tested by

no test coverage detected