Pushes the given value onto the front of this deque.
Example
val deque = dequeOf(1, 2, 3) // Deque{1, 2, 3}deque.pushFirst(4) // Deque{4, 1, 2, 3}
Value to push onto the front of this deque.