reflect.Value.Bytes (method)

9 uses

	reflect (current package)
		deepequal.go#L110: 			return bytealg.Equal(v1.Bytes(), v2.Bytes())
		value.go#L310: func (v Value) Bytes() []byte {
		value.go#L3703: 	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#L784: 	s := v.Bytes()

	fmt
		print.go#L876: 					bytes = f.Bytes()
		print.go#L878: 					bytes = f.Slice(0, f.Len()).Bytes()