reflect.Value.Bytes (method)

9 uses

	reflect (current package)
		value.go#L288: func (v Value) Bytes() []byte {
		value.go#L2702: 	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/gob
		decode.go#L381: 	if _, err := state.b.Read(value.Bytes()); err != nil {
		encode.go#L241: 	b := v.Bytes()

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

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