2 releases
Uses new Rust 2024
new 0.1.2 | Apr 2, 2025 |
---|---|
0.1.0 | Apr 2, 2025 |
#4 in #alphanumeric
90 downloads per month
Used in 180 crates
(13 directly)
185KB
1.5K
SLoC
Aloe Identifier
Aloe Identifier is a Rust library providing a robust, efficient, and user-friendly mechanism for string-based identifier management. It is designed to facilitate fast comparisons and efficient use of identifiers within various contexts, such as script variables and XML attributes.
Features
- O(1) Comparison: Enable swift equality checks between two identifiers, providing optimal performance in constant time.
- Customizable Construction: Create identifiers from strings, raw pointers, or specific character ranges, adhering to allowed pattern constraints.
- Validation Utility: Functions to verify identifier validity, ensuring they conform to acceptable alphanumeric, underscore, and special character specifications.
- Conversion and Integration: Seamless conversion to and from raw string pointers and standard Rust
String
types.
Usage
This crate supports extensive operations for creating, managing, and verifying identifiers with ease. Identifiers are primarily designed to be more efficient than strings for repeated operations and are best utilized as static objects when high frequency access is required.
Handling identifiers in environments where only specific character sets are permitted enhances their usability across diverse domains, ensuring they remain valid in system-sensitive contexts.
Installation
Add aloe-identifier
to your Cargo.toml
:
[dependencies]
aloe-identifier = "0.1.0"
Examples
use aloe_identifier::Identifier;
fn main() {
let id = Identifier::new("example_id");
assert!(id.is_valid());
assert_eq!(id.as_str(), "example_id");
}
License
This project is licensed under the GPL-3.0 License.
Contribution
Contributions are welcome. Please check out the repository and feel free to raise issues or submit pull requests.
This README file was generated by an AI model and may not be 100% accurate, but it should be quite helpful.
This crate is a translation of the JUCE module.
JUCE is a c++ software framework for developing high performance audio applications.
Usage falls under the GPLv3 as well as the JUCE commercial license.
See github.com/juce-framework/JUCE and the JUCE license page for details.
This crate is in the process of being translated from c++ to rust. For progress updates, please see the workspacer rust project. designed specifically for rust projects.
Dependencies
~13–27MB
~376K SLoC