menu
stl
stl.dart
Deque
<
T
>
pushFront method
pushFront
dark_mode
light_mode
pushFront
method
void
pushFront
(
T
element
)
Adds an element to the front (C++ STL naming).
Implementation
void pushFront(T element) => insertFront(element);
stl
stl
Deque
<
T
>
pushFront method
Deque class