Returns the minimum alignment of the stream, given the reads we have seen for this stream.
(&self)
| 48 | |
| 49 | /// Returns the minimum alignment of the stream, given the reads we have seen for this stream. |
| 50 | pub fn min_alignment(&self) -> usize { |
| 51 | 1 << self.sizes.trailing_zeros() |
| 52 | } |
| 53 | } |
| 54 | |
| 55 | pub type StreamKey = u64; |
no outgoing calls
no test coverage detected