pub fn iter_packed_slice_with_offset<P: PackedField>(
packed: &[P],
offset: usize,
) -> impl Iterator<Item = P::Scalar> + '_ + Send
Expand description
Iterate over scalar values in a packed field slice.
The iterator skips the first offset
elements. This is more efficient than skipping elements of the iterator returned.