pub fn divide_vector_set<'a, T, VS>(
    vs: &'a VS,
    d: NonZeroUsize
) -> Result<Vec<SubVectorSet<'a, T, VS>>, Error>where
    VS: VectorSet<T>,
Expand description

Divides a given vector set into subvector sets.

Fails if vs.vector_size() is not multiple of d.