MCPcopy
hub / github.com/kopia/kopia / UInt32Field

Method UInt32Field

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

UInt32Field writes a uint32 field.

(key string, value uint32)

Source from the content-addressed store, hash-verified

258
259// UInt32Field writes a uint32 field.
260func (jw *JSONWriter) UInt32Field(key string, value uint32) { jw.UInt64Field(key, uint64(value)) }
261
262// UInt32Element writes a uint32 element.
263func (jw *JSONWriter) UInt32Element(value uint32) { jw.UInt64Element(uint64(value)) }

Callers 1

TestJSONWriter_UIntTypesFunction · 0.95

Calls 1

UInt64FieldMethod · 0.95

Tested by 1

TestJSONWriter_UIntTypesFunction · 0.76