merc_utilities 1.0.0

Internal MERC toolset package containing various utility functions
Documentation
1
2
3
4
5
6
7
8
9
10
/// A copy of vec![] that can be used for the [`crate::ByteCompressedVec`].
#[macro_export]
macro_rules! bytevec {
    () => {
        $crate::ByteCompressedVec::new()
    };
    ($elem:expr; $n:expr) => {
        $crate::ByteCompressedVec::from_elem($elem, $n)
    };
}