export function values<K, V>(x: Map<K, V>): IterableIterator<V> {
  return x.values();
}