Skip to main content

sort

Function sort 

Source
pub fn sort<K, E>(
    source: impl Iterator<Item = Result<(K, Vec<u8>), E>> + Send,
    config: SortConfig,
) -> SortedIter<K, E>
where K: Ord + Pod + Copy + Send + Sync, E: Error + Send + 'static,