Len returns number of remote repos
()
| 233 | |
| 234 | // Len returns number of remote repos |
| 235 | func (collection *LocalRepoCollection) Len() int { |
| 236 | return len(collection.db.KeysByPrefix([]byte("L"))) |
| 237 | } |
| 238 | |
| 239 | // Drop removes remote repo from collection |
| 240 | func (collection *LocalRepoCollection) Drop(repo *LocalRepo) error { |
no test coverage detected