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

Function NewInt

value.go:57–57  ·  view source on GitHub ↗
(t Type, i int64)

Source from the content-addressed store, hash-verified

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)) }
59func NewInt16(i int16) Value { return newNativeValue(TypeInt16, uint64(i)) }
60func NewInt32(i int32) Value { return newNativeValue(TypeInt32, uint64(i)) }

Callers 11

resultMethod · 0.92
EvalMethod · 0.92
EvalMethod · 0.92
EvalMethod · 0.92
EvalMethod · 0.92
EvalMethod · 0.92
EvalMethod · 0.92
EvalMethod · 0.92
CallMethod · 0.92
ConstValueMethod · 0.92
metadataValueFunction · 0.92

Calls 1

newNativeValueFunction · 0.85

Tested by

no test coverage detected