frunk 0.4.4

Frunk provides developers with a number of functional programming tools like HList, Coproduct, Generic, LabelledGeneric, Validated, Monoid, Semigroup and friends.
Documentation
1
2
3
4
5
6
7
8
9
#![feature(test)]

extern crate test;
use test::Bencher;

#[bench]
fn empty(b: &mut Bencher) {
    b.iter(|| 0)
}