log_domain 0.4.1

Logarithmic representation of floats
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# rust-log-domain
Logarithmic representation of floats for rust.

## License

BSD-3-clause

## Documentation
* https://docs.rs/log_domain/0.4.1/log_domain/
* or generate HTML-documentation with `cargo doc`

## Use
* Include the crate in your rust project by adding
  ```
  log_domain = "0.4.1"
  ```
  to the `[dependencies]` in your `Cargo.toml`.
* The crate contains a `struct LogDomain<F>` and appropriate implementations for common arithmetic operations.  The struct is a newtype to allow zero-cost abstraction.