pub(crate) fn transform_all<I, T, E, F>( ids: I, label: &'static str, f: F, ) -> Vec<T>where I: IntoIterator<Item = i32>, E: Display, F: FnMut(i32) -> Result<T, E>,