MCPcopy Create free account
hub / github.com/apple/foundationdb / next

Function next

bindings/python/fdb/__init__.py:133–136  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

131 # but it's now a container. In v13 we have to make it act like
132 # an iterator again.
133 def next(self):
134 if not hasattr(self, "__iterating"):
135 self.__iterating = iter(self)
136 return next(self.__iterating)
137 setattr(fdb.impl.FDBRange, "next", next)
138
139 globals()['_version'] = ver

Callers 7

get_boundary_keysFunction · 0.70
count_separatorsMethod · 0.50
applyMethod · 0.50
is_emptyMethod · 0.50
finishMethod · 0.50
is_finishedMethod · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected