MCPcopy Index your code
hub / github.com/dropbox/godropbox / Raw

Method Raw

database/sqltypes/sqltypes.go:79–84  ·  view source on GitHub ↗

Raw returns the raw bytes. All types are currently implemented as []byte.

()

Source from the content-addressed store, hash-verified

77
78// Raw returns the raw bytes. All types are currently implemented as []byte.
79func (v Value) Raw() []byte {
80 if v.Inner == nil {
81 return nil
82 }
83 return v.Inner.raw()
84}
85
86// String returns the raw value as a string
87func (v Value) String() string {

Callers 1

TestBuildNumericFunction · 0.95

Calls 1

rawMethod · 0.65

Tested by 1

TestBuildNumericFunction · 0.76