MCPcopy
hub / github.com/kopia/kopia / Int8Field

Method Int8Field

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

Int8Field writes an int8 field.

(key string, value int8)

Source from the content-addressed store, hash-verified

202
203// Int8Field writes an int8 field.
204func (jw *JSONWriter) Int8Field(key string, value int8) { jw.Int64Field(key, int64(value)) }
205
206// Int8Element writes an int8 element.
207func (jw *JSONWriter) Int8Element(value int8) { jw.Int64Element(int64(value)) }

Callers 1

TestJSONWriter_IntTypesFunction · 0.95

Calls 1

Int64FieldMethod · 0.95

Tested by 1

TestJSONWriter_IntTypesFunction · 0.76