Crates.io | imbl-sized-chunks |
lib.rs | imbl-sized-chunks |
version | 0.1.2 |
source | src |
created_at | 2022-04-09 19:21:44.292321 |
updated_at | 2024-01-20 05:37:36.182075 |
description | Efficient sized chunk datatypes |
homepage | |
repository | https://github.com/jneem/imbl-sized-chunks |
max_upload_size | |
id | 564842 |
size | 199,609 |
Various fixed length array data types.
This crate provides the core building blocks for the immutable data structures
in imbl: a sized array with O(1) amortised double ended push/pop and
smarter insert/remove performance (used by imbl::Vector
and imbl::OrdMap
), and a
fixed size sparse array (used by imbl::HashMap
).
In a nutshell, this crate contains the unsafe bits from imbl, which may or may not be useful to anyone else, and have been split out for ease of auditing.
Copyright 2019 Bodil Stokke
Copyright 2022 Joe Neeman
This software is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.
This crate was forked from sized-chunks
,
which is where basicaly all of the work was done.