pointer_vec 0.1.0

The PointerVec works same as the std Vec structure except the Vec has a size of 3 usize (pointer, length, capacity). This crate provides a replacement that has a size of 1 pointer.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[package]
name = "pointer_vec"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
keywords = ["vector", "Vec", "pointer", "Ptr", "slice"]
categories = ["data-structures"]

description = "The PointerVec works same as the std Vec structure except the Vec has a size of 3 usize (pointer, length, capacity). This crate provides a replacement that has a size of 1 pointer."
readme = "README.md"
repository = "https://gitlab.com/yc25/pointer-vec"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]