reflect.Value.Bytes (method, view implemented interface methods)

8 uses

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

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

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

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