weak-table 0.4.0-pre2

Weak hash maps and sets
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Top-level module for larger tests that don't fit in a particular location.
//!
//! We don't put these in a /tests directory in order to save on compilation time,
//! and in order to help them share code.

#![allow(missing_docs)]
#![allow(clippy::missing_docs_in_private_items)]
#![allow(clippy::print_stderr)]
#![allow(unreachable_pub)]
#![allow(clippy::enum_variant_names)]
#![allow(clippy::get_first)]

pub(crate) mod common;
mod proptest;
pub(crate) mod set_operations;
mod symbols;
pub(crate) mod util;