MCPcopy
hub / github.com/kopia/kopia / Int32Field

Method Int32Field

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

Int32Field writes an int32 field.

(key string, value int32)

Source from the content-addressed store, hash-verified

214
215// Int32Field writes an int32 field.
216func (jw *JSONWriter) Int32Field(key string, value int32) { jw.Int64Field(key, int64(value)) }
217
218// Int32Element writes an int32 element.
219func (jw *JSONWriter) Int32Element(value int32) { jw.Int64Element(int64(value)) }

Callers 1

TestJSONWriter_IntTypesFunction · 0.95

Calls 1

Int64FieldMethod · 0.95

Tested by 1

TestJSONWriter_IntTypesFunction · 0.76