Skip to main content

BinaryHeap

Type Alias BinaryHeap 

Source
pub type BinaryHeap<T> = BinaryHeap<T>;

Aliased Type§

pub struct BinaryHeap<T> { /* private fields */ }

Trait Implementations§

Source§

impl<T: Ord> TursoAllocExt for BinaryHeap<T>

Source§

fn new() -> Self

Source§

impl<T: Ord> TursoBinaryHeapExt<T> for BinaryHeap<T>

Source§

fn try_push(&mut self, value: T) -> Result<(), TryReserveError>

Source§

impl<T: Ord> TursoFromIterator<T> for BinaryHeap<T>

Source§

fn try_from_iter<I>(iter: I) -> Result<Self, TryReserveError>
where I: IntoIterator<Item = T>,

Source§

fn try_extend<I>(&mut self, iter: I) -> Result<(), TryReserveError>
where I: IntoIterator<Item = T>,

Source§

impl<T: Ord> TursoTryWithCapacityExt for BinaryHeap<T>