reflect.Value.Bytes (method)

13 uses

	reflect (current package)
		deepequal.go#L110: 			return bytealg.Equal(v1.Bytes(), v2.Bytes())
		value.go#L298: func (v Value) Bytes() []byte {
		value.go#L3468: 	return makeString(v.flag.ro(), string(v.Bytes()), t)

	encoding/asn1
		marshal.go#L505: 				bytes := s.Bytes()
		marshal.go#L535: 			return bytesEncoder(v.Bytes()), nil

	encoding/json
		encode.go#L810: 	s := v.Bytes()

	fmt
		print.go#L876: 					bytes = f.Bytes()

	github.com/google/go-cmp/cmp
		report_reflect.go#L216: 			b := v.Bytes()
		report_slices.go#L108: 		sx, sy = string(vx.Bytes()), string(vy.Bytes())

	google.golang.org/protobuf/internal/impl
		codec_map.go#L365: 		dstm.SetMapIndex(iter.Key(), reflect.ValueOf(append(emptyBuf[:], iter.Value().Bytes()...)))
		convert.go#L356: 	return protoreflect.ValueOfBytes(v.Convert(bytesType).Bytes())