| 21 | struct SC_ASYNC_STREAMS_EXPORT CircularQueue |
| 22 | { |
| 23 | constexpr CircularQueue() = default; |
| 24 | constexpr CircularQueue(Span<T> buffer) : buffer(buffer) {} |
| 25 | |
| 26 | [[nodiscard]] size_t size() const { return buffer.sizeInElements(); } |
nothing calls this directly
no outgoing calls
no test coverage detected