untyped_vec

A type-erased vector type for Rust

Installation

Add untypedvec to your Cargo.toml to use untypedvec.

toml [dependencies] untyped_vec = *

Usage

```rust let mut vec = untyped_vec::UntypedVec::new::()

vec.push(42);

assert_eq!(vec.get::(0), &42) ```

Contributing

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.

License

MIT