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

Method native

value.go:50–50  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

48
49func newNativeValue(t Type, x uint64) Value { return Value{t, &nativeBase, x} }
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)) }

Callers 8

UintMethod · 0.95
IntMethod · 0.95
FloatMethod · 0.95
BoolMethod · 0.95
BytesMethod · 0.95
CopyMethod · 0.95
CopyFromMethod · 0.95
EqualMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected