MCPcopy Index your code
hub / github.com/tensorflow/datasets / __ge__

Method __ge__

tensorflow_datasets/core/utils/version.py:210–212  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

208 return self.tuple > other.tuple
209
210 def __ge__(self, other):
211 other = self._validate_operand(other)
212 return self.tuple >= other.tuple
213
214 def __hash__(self) -> int:
215 return hash(self.tuple)

Callers

nothing calls this directly

Calls 1

_validate_operandMethod · 0.95

Tested by

no test coverage detected