export function find<K, V>(x: Lists<K, V>, ft: TestFunction<K, V>): V {
  return xentries.find(entries(x), ft as any);
}