EstimateFactCount returns the number of facts. The real number can be lower in case of duplicates.
()
| 365 | |
| 366 | // EstimateFactCount returns the number of facts. The real number can be lower in case of duplicates. |
| 367 | func (s TeeingStore) EstimateFactCount() int { |
| 368 | return s.base.EstimateFactCount() + s.Out.EstimateFactCount() |
| 369 | } |
| 370 | |
| 371 | // NewTeeingStore returns a new TeeingStore. |
| 372 | func NewTeeingStore(base FactStore) TeeingStore { |