(self)
| 180 | return TensorList(super(TensorList, self).__add__(other)) |
| 181 | |
| 182 | def copy(self): |
| 183 | return TensorList(super(TensorList, self).copy()) |
| 184 | |
| 185 | def unroll(self): |
| 186 | if not any(isinstance(t, TensorList) for t in self): |
nothing calls this directly
no test coverage detected