Return all the items joined with *a*. *a* is included in the list if *include_self* is True.
(self, a, *, include_self=True)
| 938 | return self._grouper.joined(a, b) |
| 939 | |
| 940 | def get_siblings(self, a, *, include_self=True): |
| 941 | """ |
| 942 | Return all the items joined with *a*. |
| 943 | |
| 944 | *a* is included in the list if *include_self* is True. |
| 945 | """ |
| 946 | return self._grouper.get_siblings(a, include_self=include_self) |
| 947 | |
| 948 | |
| 949 | def simple_linear_interpolation(a, steps): |
nothing calls this directly
no test coverage detected