(i, j int)
| 684 | type decl_slice []*decl |
| 685 | |
| 686 | func (s decl_slice) Less(i, j int) bool { |
| 687 | if s[i].class != s[j].class { |
| 688 | return s[i].name < s[j].name |
| 689 | } |
| 690 | return s[i].class < s[j].class |
| 691 | } |
| 692 | func (s decl_slice) Len() int { return len(s) } |
| 693 | func (s decl_slice) Swap(i, j int) { s[i], s[j] = s[j], s[i] } |
| 694 |
nothing calls this directly
no outgoing calls
no test coverage detected