Module deepmesa::collections[][src]

Expand description

Data structures that implement various collections that are designed for performance

Modules

bitvec

This module contains traits and structs specific to the BitVector

Macros

bitvector

A macro to construct a new BitVector from a bit pattern.

Structs

BitVector

A fast contiguous growable array of bits allocated on the heap that allows storing and manipulating an arbitrary number of bits. This collection is backed by a Vector<u8> which manages the underlying memory.