[][src]Trait skew_forest::SkewPathArray

pub trait SkewPathArray: Clone {
    type Idx: Index;
    type Array: Array<Item = SkewPathNode<Self::Idx>>;
}

An opaque array used in a SkewPath.

The length of this array determines the capacity of the SkewPath. The capacity of the path will be 2.pow(array_len) - 1.

Associated Types

type Idx: Index

type Array: Array<Item = SkewPathNode<Self::Idx>>

Loading content...

Implementors

impl<T, Idx> SkewPathArray for T where
    T: Array<Item = SkewPathNode<Idx>> + Clone,
    Idx: Index
[src]

type Idx = Idx

type Array = Self

Loading content...