rust/src/libserialize
Tobias Bucher 16f01cc13f Rename and namespace FPCategory
Rename `FPCategory` to `FpCategory` and `Fp* to `*` in order to adhere to the
naming convention

This is a [breaking-change].

Existing code like this:
```
use std::num::{FPCategory, FPNaN};
```
should be adjusted to this:
```
use std::num::FpCategory as Fp
```

In the following code you can use the constants `Fp::Nan`, `Fp::Normal`, etc.
2014-12-23 13:42:09 +01:00
..
2014-12-19 10:51:00 -05:00
2014-12-18 16:20:32 -05:00
2014-12-19 10:51:00 -05:00
2014-12-23 13:42:09 +01:00
2014-12-21 23:31:42 -08:00