#tail #call #optimization #no-std #tco

no-std tiny_tco

A tiny dirt simple no_std tail call optimization library

7 releases

0.1.6 Jan 8, 2021
0.1.5 Jan 8, 2021

#2108 in Algorithms

LGPL-2.1-or-later

4KB

tiny_tco

A tiny dirt simple no_std tail call optimization library.

how it works

The tco function returns a closure implementing a trival loop.

let mut c: TCO<A, B> = TCO::Rec(p);
loop {
    match c {
        TCO::Rec(i) => c = fun(i),
        TCO::Ret(b) => return b,
    }
}

how to use

// y is the acoumulator for the value
let fact = tco(|(x,y): (i32,i32)|
	if (x == 0) {
		// if we have reached 0 return computed value
		TCO::Ret(y)
	} else {
		// reduce x by 1, and multiplyx value by x
		TCO::Rec((x-1,y*x))
	},
);
assert_eq!(fact((3,1)),6);

No runtime deps