Codebase list golang-github-cnf-structhash / c2e65fb
Import Upstream version 0.0~git20201127.e1b16c1 Thorsten Alteholz 3 years ago
2 changed file(s) with 6 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
22 - 1.8
33 - 1.9
44 - tip
5 arch:
6 - AMD64
7 - ppc64le
174174 }
175175 buf.WriteByte('}')
176176 case reflect.Interface:
177 if !val.CanInterface() {
178 return
179 }
177180 writeValue(buf, reflect.ValueOf(val.Interface()), fltr)
178181 default:
179182 buf.WriteString(val.String())