MCPcopy
hub / github.com/kopia/kopia / Int16Field

Method Int16Field

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

Int16Field writes an int16 field.

(key string, value int16)

Source from the content-addressed store, hash-verified

208
209// Int16Field writes an int16 field.
210func (jw *JSONWriter) Int16Field(key string, value int16) { jw.Int64Field(key, int64(value)) }
211
212// Int16Element writes an int16 element.
213func (jw *JSONWriter) Int16Element(value int16) { jw.Int64Element(int64(value)) }

Callers 1

TestJSONWriter_IntTypesFunction · 0.95

Calls 1

Int64FieldMethod · 0.95

Tested by 1

TestJSONWriter_IntTypesFunction · 0.76