(a: Iterable[_CLE], b: Iterable[_CLE])
| 357 | |
| 358 | |
| 359 | def _cloned_difference(a: Iterable[_CLE], b: Iterable[_CLE]) -> Set[_CLE]: |
| 360 | all_overlap: Set[_CLE] = set(_expand_cloned(a)).intersection( |
| 361 | _expand_cloned(b) |
| 362 | ) |
| 363 | return { |
| 364 | elem for elem in a if not all_overlap.intersection(elem._cloned_set) |
| 365 | } |
| 366 | |
| 367 | |
| 368 | class _DialectArgView(MutableMapping[str, Any]): |
no test coverage detected