| 113 | /// A memory pool for storing lists of `T`. |
| 114 | #[derive(Clone, Debug, Default)] |
| 115 | pub struct CompactListPool<T> { |
| 116 | elems: Vec<T>, |
| 117 | } |
| 118 | |
| 119 | impl<T> CompactListPool<T> { |
| 120 | /// Creates a new list pool. |
nothing calls this directly
no outgoing calls
no test coverage detected