pub async fn pop_many<S: MultiwriteNorFlash, CI: CacheImpl>(
    flash: &mut S,
    flash_range: Range<u32>,
    cache: CI
) -> Result<PopIterator<'_, S, CI>, Error<S::Error>>
Expand description

Pop the data from oldest to newest.

If you don’t want to remove the data use peek_many.

Returns an iterator-like type that can be used to pop the data.