menu
theory package
documentation
queue.dart
Queue<T>
isEmpty method
isEmpty method
dark_mode
light_mode
isEmpty
method
bool
isEmpty
(
)
Check if the Queue is empty
Implementation
bool isEmpty() { return head == null; }
theory package
documentation
queue
Queue<T>
isEmpty method
Queue class