Returns the total number of matching results.
(self)
| 520 | # Methods that do not return a SearchQuerySet. |
| 521 | |
| 522 | def count(self): |
| 523 | """Returns the total number of matching results.""" |
| 524 | return len(self) |
| 525 | |
| 526 | def best_match(self): |
| 527 | """Returns the best/top search result that matches the query.""" |
no outgoing calls