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