Len returns number of packages in the list
()
| 223 | |
| 224 | // Len returns number of packages in the list |
| 225 | func (l *PackageList) Len() int { |
| 226 | return len(l.packages) |
| 227 | } |
| 228 | |
| 229 | // Append adds content from one package list to another |
| 230 | func (l *PackageList) Append(pl *PackageList) error { |
no outgoing calls