()
| 93 | type sortedStructs []*StructInfo |
| 94 | |
| 95 | func (p sortedStructs) Len() int { return len(p) } |
| 96 | func (p sortedStructs) Less(i, j int) bool { return p[i].Name < p[j].Name } |
| 97 | func (p sortedStructs) Swap(i, j int) { p[i], p[j] = p[j], p[i] } |
| 98 | func (p sortedStructs) Sort() { sort.Sort(p) } |
nothing calls this directly
no outgoing calls
no test coverage detected