AddEternal adds an eternal fact to the output store.
(atom ast.Atom)
| 570 | |
| 571 | // AddEternal adds an eternal fact to the output store. |
| 572 | func (s *TeeingTemporalStore) AddEternal(atom ast.Atom) (bool, error) { |
| 573 | return s.Out.AddEternal(atom) |
| 574 | } |
| 575 | |
| 576 | // Coalesce performs interval coalescing on the output store only. |
| 577 | func (s *TeeingTemporalStore) Coalesce(predicate ast.PredicateSym) error { |
nothing calls this directly
no test coverage detected