Skip to content

Commit 8db906c

Browse files
committed
Implement Debug for BinaryHeap
Fixes #28154
1 parent 05cc464 commit 8db906c

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/libcollections/binary_heap.rs

+8
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,7 @@
154154
use core::iter::{FromIterator};
155155
use core::mem::swap;
156156
use core::ptr;
157+
use core::fmt;
157158

158159
use slice;
159160
use vec::{self, Vec};
@@ -178,6 +179,13 @@ impl<T: Ord> Default for BinaryHeap<T> {
178179
fn default() -> BinaryHeap<T> { BinaryHeap::new() }
179180
}
180181

182+
#[stable(feature = "binaryheap_debug", since = "1.4.0")]
183+
impl<T: fmt::Debug + Ord> fmt::Debug for BinaryHeap<T> {
184+
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
185+
f.debug_list().entries(self.iter()).finish()
186+
}
187+
}
188+
181189
impl<T: Ord> BinaryHeap<T> {
182190
/// Creates an empty `BinaryHeap` as a max-heap.
183191
///

0 commit comments

Comments
 (0)