-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from orxfun/documentation
documentation revised wrt LinkedList impl
- Loading branch information
Showing
4 changed files
with
23 additions
and
305 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
[package] | ||
name = "orx-pinned-vec" | ||
version = "1.0.0" | ||
version = "1.0.1" | ||
edition = "2021" | ||
authors = ["orxfun <[email protected]>"] | ||
description = "`PinnedVec` trait defines the interface for vectors which guarantee that the elements are pinned to their memory locations unless explicitly changed by the caller." | ||
description = "`PinnedVec` trait defines the interface for vectors which guarantee that elements are pinned to their memory locations with the aim to enable convenient self-referential collections." | ||
license = "MIT" | ||
repository = "https://github.com/orxfun/orx-pinned-vec/" | ||
keywords = ["vec", "array", "vector", "pinned", "memory"] | ||
categories = ["data-structures"] | ||
categories = ["data-structures", "rust-patterns"] | ||
|
||
[dependencies] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.