horner-eval 0.1.0

A macro for evaluating polynomials via Horner's rule
Documentation
# horner-eval

## Usage
Add this to your `Cargo.toml`
```toml
[dependencies]
horner-eval = "0.1.0"
```
## Description

If [Horner's rule](https://en.wikipedia.org/wiki/Horner%27s_method) is appropriate for your polynomial, then, almost assuredly, you want to unroll
the loop. The `horner!` macro provided by this crate does just that.

## License

Licensed under either of

 * [Apache License, Version 2.0]http://www.apache.org/licenses/LICENSE-2.0
 * [MIT license]http://opensource.org/licenses/MIT

at your option.

### Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in the work by you, as defined in the Apache-2.0 license, shall be
dual licensed as above, without any additional terms or conditions.