MCPcopy Index your code
hub / github.com/expr-lang/expr / printUint

Function printUint

internal/spew/common.go:158–160  ·  view source on GitHub ↗

printUint outputs an unsigned integer value to Writer w.

(w io.Writer, val uint64, base int)

Source from the content-addressed store, hash-verified

156
157// printUint outputs an unsigned integer value to Writer w.
158func printUint(w io.Writer, val uint64, base int) {
159 w.Write([]byte(strconv.FormatUint(val, base)))
160}
161
162// printFloat outputs a floating point value using the specified precision,
163// which is expected to be 32 or 64bit, to Writer w.

Callers 2

formatMethod · 0.85
dumpMethod · 0.85

Calls 1

WriteMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…