Home
last modified time | relevance | path

Searched refs:isStruct (Results 1 – 5 of 5) sorted by relevance

/build/blueprint/proptools/
Dproptools.go132 func isStruct(t reflect.Type) bool { func
145 return isSlice(t) && isStruct(t.Elem())
153 return t.Kind() == reflect.Map && isStruct(t.Elem())
157 return isStruct(t) && t.NumField() > 0 && typeFields(t)[0].Type == configurableMarkerType
Dtag.go59 if (isStruct(ft) && !isConfigurable(ft)) || isStructPtr(ft) || isSliceOfStruct(ft) {
Dfilter.go53 if isStruct(field.Type) || isStructPtr(field.Type) {
89 if !isConfigurable(field.Type) && (ptrToStruct || isStruct(field.Type)) {
Dunpack.go280 if field.Anonymous && isStruct(fieldValue.Type()) {
315 } else if isStruct(fieldValue.Type()) {
Dextend.go322 if !isStruct(embeddedDstValue.Type()) {