John Kugelman
John Kugelman
Is there a way to read in multiple TOML files into a single `cpptoml::table`? I want to support Linux-style `.d` directories where users can drop in extra configuration files. That...
Fixes https://github.com/Geal/nom/issues/1459#issuecomment-1244461213: the capacity of a `Vec` is measured in number of elements not number of bytes, so divide 64KiB by the element size. This will round towards 0, which...
In `bencher.rs` there are four doc comments like this: ```rust /// c.bench_function("with_setup", move |b| { /// // This will avoid timing the to_vec call. /// b.iter_batched(|| data.clone(), /* ... */)...