func reflect.ValueOf
56 uses
reflect (current package)
deepequal.go#L232: v1 := ValueOf(x)
deepequal.go#L233: v2 := ValueOf(y)
swapper.go#L19: v := ValueOf(slice)
value.go#L3203: func ValueOf(i any) Value {
crypto/x509
verify.go#L509: excludedValue := reflect.ValueOf(excluded)
verify.go#L528: permittedValue := reflect.ValueOf(permitted)
encoding/asn1
asn1.go#L738: v.Set(reflect.ValueOf(result))
asn1.go#L929: val.Field(0).Set(reflect.ValueOf(RawContent(bytes)))
asn1.go#L951: reflect.Copy(val, reflect.ValueOf(innerBytes))
asn1.go#L1116: v := reflect.ValueOf(val)
marshal.go#L740: e, err := makeField(reflect.ValueOf(val), parseFieldParameters(params))
encoding/binary
binary.go#L314: v := reflect.ValueOf(data)
binary.go#L451: v := reflect.Indirect(reflect.ValueOf(data))
binary.go#L467: return dataSize(reflect.Indirect(reflect.ValueOf(v)))
encoding/json
decode.go#L172: rv := reflect.ValueOf(v)
decode.go#L522: v.Set(reflect.ValueOf(ai))
decode.go#L617: v.Set(reflect.ValueOf(oi))
decode.go#L773: kv = reflect.ValueOf(key).Convert(kt)
decode.go#L783: kv = reflect.ValueOf(n).Convert(kt)
decode.go#L791: kv = reflect.ValueOf(n).Convert(kt)
decode.go#L914: v.Set(reflect.ValueOf(value))
decode.go#L950: v.Set(reflect.ValueOf(string(s)))
decode.go#L986: v.Set(reflect.ValueOf(n))
encode.go#L295: e.reflectValue(reflect.ValueOf(v), opts)
flag
flag.go#L302: ptrVal := reflect.ValueOf(p)
flag.go#L306: defVal := reflect.ValueOf(val)
fmt
print.go#L545: p.printValue(reflect.ValueOf(v), verb, 0)
print.go#L592: if v := reflect.ValueOf(arg); v.Kind() == reflect.Pointer && v.IsNil() {
print.go#L702: p.fmtPointer(reflect.ValueOf(arg), 'p')
print.go#L759: p.printValue(reflect.ValueOf(f), verb, 0)
print.go#L942: switch v := reflect.ValueOf(a[argNum]); v.Kind() {
scan.go#L1018: val := reflect.ValueOf(v)
github.com/gotd/td/tdp
tdp.go#L92: v := reflect.ValueOf(obj).Elem()
go.opentelemetry.io/otel/attribute
set.go#L76: return reflect.ValueOf(d.iface)
go.opentelemetry.io/otel/internal/attribute
attribute.go#L59: rv := reflect.ValueOf(v)
attribute.go#L73: rv := reflect.ValueOf(v)
attribute.go#L87: rv := reflect.ValueOf(v)
attribute.go#L101: rv := reflect.ValueOf(v)
go.uber.org/zap/zapcore
error.go#L55: if v := reflect.ValueOf(err); v.Kind() == reflect.Ptr && v.IsNil() {
field.go#L222: if v := reflect.ValueOf(stringer); v.Kind() == reflect.Ptr && v.IsNil() {
internal/fmtsort
sort.go#L173: c := compare(reflect.ValueOf(aVal.Elem().Type()), reflect.ValueOf(bVal.Elem().Type()))
net/http
h2_bundle.go#L4536: if rv := reflect.ValueOf(v); rv.Kind() == reflect.Uintptr {
h2_error.go#L15: dst := reflect.ValueOf(target).Elem()
h2_error.go#L20: src := reflect.ValueOf(e)
transfer.go#L1088: return reflect.ValueOf(r).Field(0).Interface().(io.Reader), true
transport.go#L382: if rv := reflect.ValueOf(altProto["https"]); rv.IsValid() && rv.Type().Kind() == reflect.Struct && rv.Type().NumField() == 1 {
net/http/httptrace
trace.go#L179: tv := reflect.ValueOf(t).Elem()
trace.go#L180: ov := reflect.ValueOf(old).Elem()
trace.go#L199: tfCopy := reflect.ValueOf(tf.Interface())
vendor/golang.org/x/crypto/cryptobyte
asn1.go#L277: if !s.readASN1Int64(&i) || reflect.ValueOf(out).Elem().OverflowInt(i) {
asn1.go#L280: reflect.ValueOf(out).Elem().SetInt(i)
asn1.go#L284: if !s.readASN1Uint64(&u) || reflect.ValueOf(out).Elem().OverflowUint(u) {
asn1.go#L287: reflect.ValueOf(out).Elem().SetUint(u)
asn1.go#L693: reflect.ValueOf(out).Elem().Set(reflect.ValueOf(defaultValue))
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |