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

Function NewUint

value.go:52–52  ·  view source on GitHub ↗
(t Type, u uint64)

Source from the content-addressed store, hash-verified

50func (v Value) native() (uint64, bool) { return v.len, v.base == &nativeBase }
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)) }

Callers 8

EvalMethod · 0.92
EvalMethod · 0.92
EvalMethod · 0.92
EvalMethod · 0.92
EvalMethod · 0.92
EvalMethod · 0.92
ConstValueMethod · 0.92
metadataValueFunction · 0.92

Calls 1

newNativeValueFunction · 0.85

Tested by

no test coverage detected