[][src]Function exr::image::uncompressed_image_blocks_ordered

#[must_use]
pub fn uncompressed_image_blocks_ordered<'l>(
    meta_data: &'l MetaData,
    get_line: &'l impl Sync + 'l + Fn(&[Header], LineRefMut) -> UnitResult
) -> impl Iterator<Item = Result<(usize, UncompressedBlock)>> + 'l + Send

Iterate over all uncompressed blocks of an image. The image contents are collected by the get_line function parameter. Returns blocks in LineOrder::Increasing, unless the line order is requested to be decreasing.