Skip to content
/ fera Public

An aggregation of algorithms, data structures and supporting crates

License

Notifications You must be signed in to change notification settings

malbarbo/fera

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

fera

An aggregation of algorithms, data structures and supporting crates.

This crate does not directly provides any item, it only reexports modules corresponding to others crates. Each module is enable with a feature with the same name. All features are disable by default. To avoid longer compile times, it is recommend to enable only the features that will be used.

Docs.rs Crates.io

Crates

Example

To use ext and fun crates in this example:

extern crate fera;

use fera::ext::VecExt;
use fera::fun::vec;

fn main() {
    assert_eq!(vec![3, 2, 1], vec(1..4).reversed());
}

it is necessary to add this to Cargo.toml:

[dependencies]
fera = { version = "0.3", features = ["ext", "fun"] }

License

Licensed under Mozilla Public License 2.0. Contributions will be accepted under the same license.

About

An aggregation of algorithms, data structures and supporting crates

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages