collectionRevisionCache is a view of a revision cache for a collection.
| 132 | |
| 133 | // collectionRevisionCache is a view of a revision cache for a collection. |
| 134 | type collectionRevisionCache struct { |
| 135 | revCache *RevisionCache |
| 136 | collectionID uint32 |
| 137 | } |
| 138 | |
| 139 | // NewCollectionRevisionCache returns a view of a revision cache for a collection. |
| 140 | func newCollectionRevisionCache(revCache *RevisionCache, collectionID uint32) collectionRevisionCache { |
nothing calls this directly
no outgoing calls
no test coverage detected