MCPcopy Index your code
hub / github.com/devfeel/mapper / CheckIsTypeWrapper

Method CheckIsTypeWrapper

mapper_object.go:373–380  ·  view source on GitHub ↗

CheckIsTypeWrapper check value is in type wrappers

(value reflect.Value)

Source from the content-addressed store, hash-verified

371
372// CheckIsTypeWrapper check value is in type wrappers
373func (dm *mapperObject) CheckIsTypeWrapper(value reflect.Value) bool {
374 for _, w := range dm.typeWrappers {
375 if w.IsType(value) {
376 return true
377 }
378 }
379 return false
380}

Callers

nothing calls this directly

Calls 1

IsTypeMethod · 0.65

Tested by

no test coverage detected