zip method

Set<String> zip()

Pairs corresponding elements together.

'abc', '123'.zip() returns 'a1', 'b2', 'c3'.

Implementation

Set<String> zip() {
  return h.zipString(this).toSet();
}