export function* values<K, V>(x: Entries<K, V>): Iterable<V> {
  for (var [, v] of x)
    yield v;
}