Swap implements sort.Interface
(i, j int)
| 586 | |
| 587 | // Swap implements sort.Interface |
| 588 | func (p PortPublishers) Swap(i, j int) { |
| 589 | p[i], p[j] = p[j], p[i] |
| 590 | } |
| 591 | |
| 592 | // ContainerProcSummary holds container processes top data |
| 593 | type ContainerProcSummary struct { |
nothing calls this directly
no outgoing calls
no test coverage detected