MCPcopy Index your code
hub / github.com/ndleah/python-mini-project / first

Method first

linked_lists/linked_deque.py:8–11  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

6class LinkedDeque(_DoublyLinkedList):
7
8 def first(self):
9 if self.is_empty():
10 raise Empty("Dequeu is empty")
11 return self._header._next._element
12
13 def last(self):
14 if self.is_empty():

Callers 4

Download Audio.pyFile · 0.80
get_feed_by_idFunction · 0.80
delete_feed_from_dbFunction · 0.80

Calls 2

EmptyClass · 0.70
is_emptyMethod · 0.45

Tested by

no test coverage detected