mirror of
https://github.com/Noratrieb/vechonk.git
synced 2026-01-14 08:35:10 +01:00
initial commit
This commit is contained in:
commit
56d01a9464
3 changed files with 18 additions and 0 deletions
4
.gitignore
vendored
Normal file
4
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
/target
|
||||||
|
Cargo.lock
|
||||||
|
.idea
|
||||||
|
*.iml
|
||||||
8
Cargo.toml
Normal file
8
Cargo.toml
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
[package]
|
||||||
|
name = "vechonk"
|
||||||
|
version = "0.1.0"
|
||||||
|
edition = "2021"
|
||||||
|
|
||||||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
6
src/lib.rs
Normal file
6
src/lib.rs
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
//!
|
||||||
|
//! A `Vec<T: ?Sized>`
|
||||||
|
//!
|
||||||
|
//! It's implemented by laying out the elements in memory contiguously like `alloc::vec::Vec`
|
||||||
|
|
||||||
|
struct Vechonk<T: ?Sized>;
|
||||||
Loading…
Add table
Add a link
Reference in a new issue