1 unstable release
new 0.1.0 | Apr 4, 2025 |
---|
#7 in #efficient
Used in 29 crates
(2 directly)
16KB
153 lines
icentral-deltas
icentral-deltas
is a Rust crate that provides a powerful and flexible mechanism for managing delta changes in data structures using a concept of delta mapping. This library is highly suitable for applications requiring dynamic and efficient updates to datasets, leveraging memory-efficient designs through the use of MaybeIndexedMap
.
Features
- Delta Management: Facilitates efficient tracking, updating, and resetting of deltas in a dataset using the core abstraction provided by
DeltaMap
. - Custom Macros: Includes
delegate_to_deltas
, a macro designed to streamline interactions with delta-based data, allowing for concise code structures. - Dynamic Data Handling: Supports operations like clearing the dataset, incrementally updating values, and computing ratios. These functionalities enable robust manipulation of datasets that evolve over time.
Core Structures
DeltaMap
A pivotal construct in icentral-deltas
, DeltaMap
is equipped with several methods:
- Creation functions like
empty_indexed
,empty_mapped
, andnew
for initializingDeltaMap
objects with different presets. - Update methods including
update
,set_zero
,set_one
, allowing precise control over delta states. - Utility functions such as
clear
,len
,get
, andset
offer direct interactions with map contents.
Usage Example
Here is a brief illustration of how DeltaMap
can be utilized:
use icentral_deltas::DeltaMap;
// Create a new `DeltaMap`
let mut delta_map = DeltaMap::new(10, "example_map");
delta_map.update(1, 2, 0.5);
let ratio = delta_map.ratio(1, 2);
println!("Computed ratio: {}", ratio);
Installation
Add this crate to your dependencies in Cargo.toml
:
[dependencies]
icentral-deltas = "0.1.0"
Contributing
Contributions are welcome! Feel free to open issues or submit pull requests.
This README.md file was generated by an AI model and may not be 100% accurate, however, it should be pretty good.
This crate is in the process of being translated from c++ to rust. Currently, it still needs exhaustive testing. It is likely there currently exist many glitches which need to be fixed before proper usage. This crate is based on the original icentral program developed by Fuad Jamor. Please see the following repository for details: https://github.com/fjamour/icentral.
For progress updates, see the workspacer rust project.
Dependencies
~15–25MB
~386K SLoC