better-conversions 0.3.1

Safe and explicit numeric conversions with range and precision checking
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# better-conversions
## Safe and explicit numeric conversions with range and precision checking
```rust
use better_conversions::prelude::*;
/* .goto_u8, .goto_u16, .goto_u32, */
/* .goto_u64, .goto_u128, .goto_usize, */
/* .goto_f32, .goto_f64 */

/* .try_goto_u8, .try_goto_u16, .try_goto_u32, */
/* .try_goto_u64, .try_goto_u128, .try_goto_usize, */
/* .try_goto_f32, .try_goto_f64 */
```
#### Infallible conversions use "goto"
#### Fallible conversions use "try_goto"