For a container type that contains only values, not keys, All should
return an iter.Seq.
For a container type that contains both keys and values, All should
return an iter.Seq2.
Slices and maps are container types that contain both keys and values,
so maps.All and slices.All return iter.Seq2.
Whether a Values method/function makes sense is going to depend on the
container type. For both slices and maps it does make sense (and, of
course, maps also has a Keys function).
Ian