Pairs corresponding elements together.
'abc', '123'.zip() returns 'a1', 'b2', 'c3'.
'abc', '123'
'a1', 'b2', 'c3'
Set<String> zip() { return h.zipString(this).toSet(); }