Merge forwards to writeStore.Merge
(other ReadOnlyFactStore)
| 284 | |
| 285 | // Merge forwards to writeStore.Merge |
| 286 | func (s MergedStore) Merge(other ReadOnlyFactStore) { |
| 287 | s.writeStore.Merge(other) |
| 288 | } |
| 289 | |
| 290 | // NewMergedStore returns a new MergedStore. |
| 291 | func NewMergedStore[T ReadOnlyFactStore](readStores []T, writeStore FactStore) FactStore { |