DisplayString returns a string representation of the temporal fact using unescaped constants.
()
| 35 | |
| 36 | // DisplayString returns a string representation of the temporal fact using unescaped constants. |
| 37 | func (tf TemporalFact) DisplayString() string { |
| 38 | return tf.Atom.DisplayString() + tf.Interval.String() |
| 39 | } |
| 40 | |
| 41 | // ReadOnlyTemporalFactStore provides read access to temporal facts. |
| 42 | type ReadOnlyTemporalFactStore interface { |