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

Method joined

lib/matplotlib/cbook.py:934–938  ·  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

932 def __iter__(self): return iter(self._grouper)
933
934 def joined(self, a, b):
935 """
936 Return whether *a* and *b* are members of the same set.
937 """
938 return self._grouper.joined(a, b)
939
940 def get_siblings(self, a, *, include_self=True):
941 """

Callers

nothing calls this directly

Calls 1

joinedMethod · 0.45

Tested by

no test coverage detected