1 unstable release
Uses new Rust 2024
new 0.1.2 | Apr 3, 2025 |
---|
#188 in #dsp
Used in 2 crates
(via aloe-fft)
37KB
265 lines
Aloe Fixed Size Function
Aloe Fixed Size Function is a Rust crate that provides a type similar to std::function
. This crate is optimized for real-time contexts as it ensures that a callable object is stored in a pre-allocated buffer. This approach eliminates runtime allocation, thereby enhancing performance in environments where allocation overhead is undesirable.
Features
- Fixed Size Buffer: Callable objects are stored in an internal buffer defined by a constant size parameter
LEN
, ensuring constant memory usage. - Realtime Optimization: Avoids dynamic memory allocation, making it suitable for DSP and other time-sensitive applications.
- Generic Implementation: Supports generic return types and arguments, making it versatile for various functional interfaces.
Usage
To use Aloe Fixed Size Function
, instantiate it with a buffer size, return type, and argument type:
let fixed_func = FixedSizeFunction::<64, i32, (i32,)>::new(|x| x + 1);
if fixed_func.is_callable() {
let result = fixed_func.call((5,));
assert_eq!(result, 6);
}
Safety
Ensure that the function fits within the specified buffer length and respects alignment requirements. The assert statements in the implementation enforce these constraints during instantiation.
License
Aloe Fixed Size Function is licensed under GPL-3.0. See LICENSE file in the repository for more details.
This README file was generated by an AI model and may not be 100% accurate. However, it should provide a good overview of the crate.
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–22MB
~370K SLoC