MCPcopy Create free account
hub / github.com/IBM/sarama / putInt64Array

Method putInt64Array

real_encoder.go:165–174  ·  view source on GitHub ↗
(in []int64)

Source from the content-addressed store, hash-verified

163}
164
165func (re *realEncoder) putInt64Array(in []int64) error {
166 err := re.putArrayLength(len(in))
167 if err != nil {
168 return err
169 }
170 for _, val := range in {
171 re.putInt64(val)
172 }
173 return nil
174}
175
176func (re *realEncoder) putEmptyTaggedFieldArray() {
177}

Callers

nothing calls this directly

Calls 2

putArrayLengthMethod · 0.95
putInt64Method · 0.95

Tested by

no test coverage detected