Skip to content

Commit

Permalink
Merge pull request #197 from gnzlbg/remove_fext
Browse files Browse the repository at this point in the history
Remove F32Ext and F64Ext
  • Loading branch information
alexcrichton committed Jul 4, 2019
2 parents b03bda3 + 3f815ce commit c83f16a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 626 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ keywords = ["libm", "math"]
license = "MIT OR Apache-2.0"
name = "libm"
repository = "https://github.com/rust-lang-nursery/libm"
version = "0.1.4"
version = "0.2.0"
edition = "2018"

[features]
Expand Down
17 changes: 1 addition & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,22 +18,7 @@ term goal is to enable [math support in the `core` crate][core].

## Already usable

This crate is [on crates.io] and can be used today in stable `#![no_std]` programs like this:

[on crates.io]: https://crates.io/crates/libm

``` rust
#![no_std]

extern crate libm;

use libm::F32Ext; // adds methods to `f32`

fn foo(x: f32) {
let y = x.sqrt();
let z = libm::truncf(x);
}
```
This crate is [on crates.io] and can be used today in stable `#![no_std]` programs.

The API documentation can be found [here](https://docs.rs/libm).

Expand Down
Loading

0 comments on commit c83f16a

Please sign in to comment.