(self, other)
| 939 | return self.concatenate(other) |
| 940 | |
| 941 | def __radd__(self, other): |
| 942 | if not isinstance(other, TensorShape): |
| 943 | other = TensorShape(other) |
| 944 | return other.concatenate(self) |
| 945 | |
| 946 | def concatenate(self, other): |
| 947 | """Returns the concatenation of the dimension in `self` and `other`. |
nothing calls this directly
no test coverage detected