(self)
| 52 | self.list_ = list_ops.tensor_list_push_back(self.list_, value) |
| 53 | |
| 54 | def pop(self): |
| 55 | self.list_, value = list_ops.tensor_list_pop_back(self.list_, self.dtype) |
| 56 | return value |
| 57 | |
| 58 | def clear(self): |
| 59 | self.list_ = list_ops.empty_tensor_list(self.shape, self.dtype) |
no outgoing calls