memoryStorage is an in-memory storage implementation with known contents *and* fixed iteration order for List.
| 31 | |
| 32 | // memoryStorage is an in-memory storage implementation with known contents *and* fixed iteration order for List. |
| 33 | type memoryStorage struct { |
| 34 | contents []memoryStorageItem |
| 35 | } |
| 36 | |
| 37 | type memoryStorageItem struct { |
| 38 | key string |
nothing calls this directly
no outgoing calls
no test coverage detected