MCPcopy Create free account
hub / github.com/codefuse-ai/codefuse-devops-eval / __iter__

Method __iter__

src/datasets/base_dataset.py:27–29  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

25 pass
26
27 def __iter__(self):
28 self.current_index = 0
29 return self
30
31 def __next__(self):
32 if self.current_index < len(self.datas):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected