Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/DataDog/jsonapi
/ derefType
Function
derefType
reflect.go:21–27 ·
view source on GitHub ↗
(t reflect.Type)
Source
from the content-addressed store, hash-verified
19
}
20
21
func
derefType(t reflect.Type) reflect.Type {
22
switch
t.Kind() {
23
case
reflect.Pointer:
24
return
derefType(t.Elem())
25
}
26
return
t
27
}
28
29
func
recoverError(rvr any) error {
30
var
err error
Callers
7
TestDerefType
Function · 0.85
unmarshalResourceObjects
Function · 0.85
unmarshal
Method · 0.85
unmarshalFields
Method · 0.85
checkMeta
Function · 0.85
makeDocument
Function · 0.85
makeResourceObject
Method · 0.85
Calls
no outgoing calls
Tested by
1
TestDerefType
Function · 0.68