MCPcopy
hub / github.com/Jack-Lee-Hiter/AlgorithmsByPython / dequeue

Method dequeue

Queue.py:11–12  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

9 self.items.insert(0, item)
10
11 def dequeue(self):
12 return self.items.pop()
13
14 def size(self):
15 return len(self.items)

Callers 2

hotPotatoFunction · 0.95
Queue.pyFile · 0.80

Calls 1

popMethod · 0.45

Tested by

no test coverage detected