Crates.io | poly_it |
lib.rs | poly_it |
version | 0.2.3 |
source | src |
created_at | 2024-03-22 06:03:18.349633 |
updated_at | 2024-07-06 11:08:03.130131 |
description | A no-std library for manipulating polynomials with slice support and minimal allocation. |
homepage | |
repository | https://github.com/SkyeC0re/polyit-rs |
max_upload_size | |
id | 1182295 |
size | 67,847 |
A no_std
library for manipulating polynomials with slice support and minimal allocation.
Add this to your Cargo.toml
:
[dependencies]
poly_it = "0.2.3"
The library is no_std
by default but assumes a global allocator. It can also be used entirely without one if the default features
are disabled and either of the tinyvec
or arrayvec
features are enabled.
The minimum supported Rust version is Rust 1.65.0.
This library started out as fork of polynomial-rs, but was rewritten to accommodate iterators and minimal allocation.