char-list 0.4.0

A persistent string type with the same API as a linked-list of characters.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![allow(clippy::module_inception)]

mod pq_rc;

#[cfg(not(test))]
mod pq_rc_cell;

#[cfg(test)]
pub mod pq_rc_cell;

#[cfg(test)]
mod tests;

pub use pq_rc::*;