checks whether the deque is full
(self)
| 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 | """ |
no outgoing calls
no test coverage detected