Flutter
collection
HeapPriorityQueue
<
E
>
clear method
clear
HeapPriorityQueue class
Constructors
HeapPriorityQueue
Properties
comparison
first
isEmpty
isNotEmpty
length
hashCode
runtimeType
Methods
add
addAll
clear
contains
remove
removeAll
removeFirst
toList
toSet
toString
noSuchMethod
Operators
operator ==
clear method
void
clear
(
)
override
Removes all the elements from this queue.
Implementation
void clear() { _queue = const []; _length = 0; }