| 300 | func EmptySearchResultSet() SearchResultSet { return emptySearchResultSet{} } |
| 301 | |
| 302 | type errSearchResultSet struct { |
| 303 | err error |
| 304 | warnings annotations.Annotations |
| 305 | } |
| 306 | |
| 307 | func (errSearchResultSet) Next() bool { return false } |
| 308 | func (errSearchResultSet) At() SearchResult { return SearchResult{} } |
nothing calls this directly
no outgoing calls
no test coverage detected