Tailcall
Tailcall is a library that adds safe, zero-cost tail recursion to stable Rust.
Eventually, it will be superseded by the become
keyword.
Installation
Tailcall is distributed as a crate.
Add this to your Cargo.toml
:
[]
= "0.1"
Usage
Add the tailcall
attribute to functions which you would like to use tail recursion:
use tailcall;
For more detailed information, please see the docs.
Development
Development dependencies, testing, documentation generation, packaging, and distribution are all managed via Cargo.
After checking out the repo, run cargo test
to verify the test suite.
The latest documentation can be generated with cargo doc
.
Before commiting, please make sure code is formatted canonically with cargo fmt
.
New versions are released to crates.io with cargo publish
.
Contributing
Bug reports and pull requests are welcome on GitHub.
License
Tailcall is distributed under the terms of both the MIT license and the Apache License (Version 2.0).
See LICENSE-APACHE and LICENSE-MIT, and COPYRIGHT for details.