MCPcopy Index your code
hub / github.com/pydata/xarray / join_dict_keys

Function join_dict_keys

xarray/computation/apply_ufunc.py:372–375  ·  view source on GitHub ↗
(objects: Iterable[Mapping | Any], how: str = "inner")

Source from the content-addressed store, hash-verified

370
371
372def join_dict_keys(objects: Iterable[Mapping | Any], how: str = "inner") -> Iterable:
373 joiner = _JOINERS[how]
374 all_keys = [obj.keys() for obj in objects if hasattr(obj, "keys")]
375 return joiner(all_keys)
376
377
378def collect_dict_values(

Callers 2

test_join_dict_keysFunction · 0.90

Calls 1

keysMethod · 0.80

Tested by 1

test_join_dict_keysFunction · 0.72

Used in the wild real call sites across dependent graphs

searching dependent graphs…