pub fn get_at_indices<T, I>(
items: &[T],
indices: impl IntoIterator<Item = I>,
) -> Result<Vec<T>, DataFusionError>
Expand description
This function “takes” the elements at indices
from the slice items
.
pub fn get_at_indices<T, I>(
items: &[T],
indices: impl IntoIterator<Item = I>,
) -> Result<Vec<T>, DataFusionError>
This function “takes” the elements at indices
from the slice items
.