Get the oldest value in the ring buffer
(&self)
| 85 | |
| 86 | /// Get the oldest value in the ring buffer |
| 87 | pub fn tail(&self) -> Option<&T> { |
| 88 | self.buffer.front() |
| 89 | } |
| 90 | |
| 91 | /// iterate from the tail to the head (oldest to newest) |
| 92 | /// |
no outgoing calls
no test coverage detected