(i, j int)
| 45 | func (a FieldByJsonName) Len() int { return len(a) } |
| 46 | func (a FieldByJsonName) Swap(i, j int) { a[i], a[j] = a[j], a[i] } |
| 47 | func (a FieldByJsonName) Less(i, j int) bool { return a[i].JsonName < a[j].JsonName } |
| 48 | |
| 49 | type StructInfo struct { |
| 50 | Name string |
nothing calls this directly
no outgoing calls
no test coverage detected