fibext

fibext is a versatile Fibonacci sequence generator for Rust, offering support for various features and customization options.

Features

Usage

Add fibext as a dependency in your Cargo.toml file:

toml [dependencies] fibext = "0.2.0"

Import the fibext crate into your Rust code:

rust use fibext::*;

Create a new Fibonacci sequence:

rust let fib: Fibonacci<u32> = Fibonacci::new();

Iterate over the Fibonacci sequence:

rust for number in fib.take(10) { println!("{}", number); }

This will print the first 10 Fibonacci numbers.

Supported Types

The fibext library supports the following types of unsigned integers:

When the large-numbers feature is enabled, the library also supports BigUint from the num_bigint crate.

Optional Features

The fibext library provides several optional features that can be enabled or disabled based on your needs. These features are controlled through the features section in your Cargo.toml file.

toml [dependencies] fibext = { version = "0.2.0", features = ["large-numbers"] }

Benchmarks

The fibext library includes a benchmark for Fibonacci sequence generation. To run the benchmark, use the following command:

shell cargo bench --bench fibonacci

License

This project is licensed under the GNU General Public License v3.0. See the LICENSE file for more details.