pub type CompressedBinaryIndexedTree3d<M, A, B, C> = CompressedBinaryIndexedTree<M, A, CompressedBinaryIndexedTree<M, B, CompressedBinaryIndexedTree<M, C, Tag<M>>>>;Aliased Type§
pub struct CompressedBinaryIndexedTree3d<M, A, B, C> {
compress: Vec<A>,
bits: Vec<CompressedBinaryIndexedTree<M, B, CompressedBinaryIndexedTree<M, C, Tag<M>>>>,
_marker: PhantomData<fn() -> M>,
}Fields§
§compress: Vec<A>§bits: Vec<CompressedBinaryIndexedTree<M, B, CompressedBinaryIndexedTree<M, C, Tag<M>>>>§_marker: PhantomData<fn() -> M>