(*mappings)
| 82 | |
| 83 | |
| 84 | def zip_mappings(*mappings): |
| 85 | for key in set(mappings[0]).intersection(*mappings[1:]): |
| 86 | yield key, tuple(m[key] for m in mappings) |
| 87 | |
| 88 | |
| 89 | def array_extract_units(obj): |
no outgoing calls
no test coverage detected
searching dependent graphs…