export function difference<K, V>(x: Entries<K, V>, y: Entries<K, V>): Entries<K, V> {
  return mapDifference(x, y);
}