Len implements sort.Interface extracting the length of the list
()
| 268 | |
| 269 | // Len implements sort.Interface extracting the length of the list |
| 270 | func (list *PostgresqlStatusList) Len() int { |
| 271 | return len(list.Items) |
| 272 | } |
| 273 | |
| 274 | // Swap swaps two elements, implements sort.Interface |
| 275 | func (list *PostgresqlStatusList) Swap(i, j int) { |
no outgoing calls
no test coverage detected