MCPcopy Index your code
hub / github.com/OmkarPathak/pygorithm / is_full

Method is_full

pygorithm/data_structures/queue.py:95–99  ·  view source on GitHub ↗

checks whether the deque is full

(self)

Source from the content-addressed store, hash-verified

93 return len(self.queue) <= 0
94
95 def is_full(self):
96 """
97 checks whether the deque is full
98 """
99 return len(self.queue) >= self.limit
100
101 def insert_rear(self, data):
102 """

Callers 3

insert_rearMethod · 0.95
insert_frontMethod · 0.95
delete_frontMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected