Skip to content

Instantly share code, notes, and snippets.

@DonghyungKo
Created April 12, 2021 12:49
Show Gist options
  • Save DonghyungKo/372650608c523bd32ff40ecbeb14756c to your computer and use it in GitHub Desktop.
Save DonghyungKo/372650608c523bd32ff40ecbeb14756c to your computer and use it in GitHub Desktop.
pub struct Vec<T> {
ptr: *const T,
cap: usize,
len: usize,
_marker: PhantomData<T>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment