MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / __iadd__

Method __iadd__

tensorflow/python/training/tracking/data_structures.py:327–329  ·  view source on GitHub ↗
(self, values)

Source from the content-addressed store, hash-verified

325 self.append(value)
326
327 def __iadd__(self, values):
328 self.extend(values)
329 return self
330
331 def __add__(self, other):
332 return self.__class__(self._storage + getattr(other, "_storage", other))

Callers

nothing calls this directly

Calls 1

extendMethod · 0.95

Tested by

no test coverage detected