[][src]Function sdset::set::slice_sets_into_slices

pub fn slice_sets_into_slices<'a, T: 'a>(
    slice: &'a [&'a Set<T>]
) -> &'a [&'a [T]]

Safely transmute a slice of Sets into a slice of slice.

This is useful when you don't want to introduce another allocation to your program.

Note that the values that are parts of the returned slices will be ordered and deduplicated.