Skip to main content

array_join

Function array_join 

Source
pub fn array_join<T: Clone>(arr: &[T]) -> impl Iterator<Item = T> + '_
Expand description

arrayJoin — flattens a Vec<T> into an iterator. In SQL this fans a single row into N rows; callers iterate this inside their scan loop.