-
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.
feat: complete Rust API Checklist before publishing (#5)
* chore: create changelog * chore: rename `enable-serde` feature to `serde` * feat: add derives or implementations of common traits * feat: add `From<HashMap` and `From<BTreeMap>` implementations * feat: implement `Extend` * test: validate Send and Sync implementations * chore: remove redundant `Cargo.toml` metadata * style: run clippy & fmt
- Loading branch information
Showing
4 changed files
with
82 additions
and
6 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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [0.1.0] - 2023-12-11 | ||
### Added | ||
- Initial release | ||
- `FixedIndexVec` struct | ||
- `FixedIndexVec::new()` constructor | ||
- `FixedIndexVec::push(value)` method | ||
- `FixedIndexVec::insert(value)` method | ||
- `FixedIndexVec::remove(index)` method | ||
- `FixedIndexVec::get(index)` method | ||
- `FixedIndexVec::iter()` method | ||
- `FixedIndexVec::len()` method | ||
- `FixedIndexVec::is_empty()` method | ||
- `FixedIndexVec::clear()` method | ||
- `FixedIndexVec::reset()` method | ||
- `FixedIndexVec::next_index()` method | ||
- `FixedIndexVec::first()` method | ||
- `FixedIndexVec::last()` method |
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
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
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