1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#[cfg(not(feature = "std"))]
use alloc::collections::BinaryHeap;
#[cfg(feature = "std")]
use std::collections::BinaryHeap;

use super::super::*;

impl<V> Collection for BinaryHeap<V>
where
    V: Ord,
{
    #[inline(always)]
    fn len(&self) -> usize {
        BinaryHeap::<V>::len(self)
    }
}

impl<V> CollectionMut for BinaryHeap<V>
where
    V: Ord,
{
    #[inline(always)]
    fn clear(&mut self) {
        BinaryHeap::<V>::clear(self);
    }
}

impl<V> Create<V> for BinaryHeap<V>
where
    V: Ord,
{
    #[inline(always)]
    fn create() -> Self {
        BinaryHeap::<V>::new()
    }
    #[inline(always)]
    fn create_with_capacity(_: usize) -> Self {
        BinaryHeap::<V>::new()
    }

    #[inline(always)]
    fn add_element(mut self, value: V) -> Self {
        BinaryHeap::<V>::push(&mut self, value);
        self
    }
}

impl<V> Add<V> for BinaryHeap<V>
where
    V: Ord,
{
    type Output = ();

    #[inline(always)]
    fn add(&mut self, v: V) -> Self::Output {
        BinaryHeap::<V>::push(self, v)
    }
}