A type-erased vector type for Rust
Add untypedvec to your Cargo.toml to use untypedvec.
toml
[dependencies]
untyped_vec = *
```rust
let mut vec = untyped_vec::UntypedVec::new::
vec.push(42);
assert_eq!(vec.get::
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.