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

Method next

tensorflow/python/lib/io/file_io.py:213–217  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

211 return self
212
213 def next(self):
214 retval = self.readline()
215 if not retval:
216 raise StopIteration()
217 return retval
218
219 def __next__(self):
220 return self.next()

Callers 7

__next__Method · 0.95
__next__Method · 0.45
__next__Method · 0.45
__next__Method · 0.45
__next__Method · 0.45
_trace_executionMethod · 0.45
testDatasetMapTestMethod · 0.45

Calls 1

readlineMethod · 0.95

Tested by 1

testDatasetMapTestMethod · 0.36