MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / joined

Method joined

lib/matplotlib/cbook.py:895–897  ·  view source on GitHub ↗

Return whether *a* and *b* are members of the same set.

(self, a, b)

Source from the content-addressed store, hash-verified

893 mapping[elem] = set_a
894
895 def joined(self, a, b):
896 """Return whether *a* and *b* are members of the same set."""
897 return (self._mapping.get(a, object()) is self._mapping.get(b))
898
899 def remove(self, a):
900 """Remove *a* from the grouper, doing nothing if it is not there."""

Callers 5

test_grouperFunction · 0.95
_releaseMethod · 0.45
release_zoomMethod · 0.45
joinedMethod · 0.45
check_sharedFunction · 0.45

Calls 1

getMethod · 0.45

Tested by 2

test_grouperFunction · 0.76
check_sharedFunction · 0.36