MCPcopy
hub / github.com/kopia/kopia / UIntField

Method UIntField

internal/contentlog/contentlog_json_writer.go:242–242  ·  view source on GitHub ↗

unsigned integers UIntField writes a uint field.

(key string, value uint)

Source from the content-addressed store, hash-verified

240
241// UIntField writes a uint field.
242func (jw *JSONWriter) UIntField(key string, value uint) { jw.UInt64Field(key, uint64(value)) }
243
244// UIntElement writes a uint element.
245func (jw *JSONWriter) UIntElement(value uint) { jw.UInt64Element(uint64(value)) }

Callers 1

TestJSONWriter_UIntTypesFunction · 0.95

Calls 1

UInt64FieldMethod · 0.95

Tested by 1

TestJSONWriter_UIntTypesFunction · 0.76