/* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. Copyright (C) 2026 metamuffin */ use crate::RowNum; use anyhow::Result; pub struct MergeIterator<'a> { iters: Vec)>> + 'a>>, } impl<'a> MergeIterator<'a> { pub fn new(iters: Vec)>> + 'a>>) -> Self { Self { iters } } } impl<'a> Iterator for MergeIterator<'a> { type Item = Result<(RowNum, Vec)>; fn next(&mut self) -> Option { todo!() } }