reflect.Value.Cap (method)

4 uses

	reflect (current package)
		value.go#L1153: func (v Value) Cap() int {

	encoding/json
		decode.go#L546: 			if i >= v.Cap() {

	github.com/google/go-cmp/cmp
		report_reflect.go#L244: 			header := fmt.Sprintf("ptr:%v, len:%d, cap:%d", formatPointer(value.PointerOf(v), false), v.Len(), v.Cap())

	text/template
		funcs.go#L271: 		cap = item.Cap()