CompressedBinaryIndexedTree2d

Type Alias CompressedBinaryIndexedTree2d 

Source
pub type CompressedBinaryIndexedTree2d<M, A, B> = CompressedBinaryIndexedTree<M, A, CompressedBinaryIndexedTree<M, B, Tag<M>>>;

Aliased Type§

pub struct CompressedBinaryIndexedTree2d<M, A, B> {
    compress: Vec<A>,
    bits: Vec<CompressedBinaryIndexedTree<M, B, Tag<M>>>,
    _marker: PhantomData<fn() -> M>,
}

Fields§

§compress: Vec<A>§bits: Vec<CompressedBinaryIndexedTree<M, B, Tag<M>>>§_marker: PhantomData<fn() -> M>