This crate provides checked, overflowing and static casts.
*As
traits were renamed to [*Cast
].*As
] traits were added.```rust use az::{Az, OverflowingAs, WrappingAs}; use core::num::Wrapping;
// Panics on overflow with debug_assertions
, otherwise wraps
assert_eq!(12i32.az::
// Always wraps
let wrapped = 1u32.wrappingneg();
asserteq!((-1).wrappingas::
// Wrapping can also be obtained using Wrapping
assert_eq!((-1).az::
Conversions from floating-point to integers are also supported.
Numbers are rounded towards zero, but the [Round
] wrapper can be
used to convert floating-point numbers to integers with rounding to
the nearest, with ties rounded to even.
```rust use az::{Az, CheckedAs, Round, SaturatingAs}; use core::f32;
asserteq!(15.7.az::
The az crate is available on crates.io. To use it in your crate, add it as a dependency inside [Cargo.toml]:
toml
[dependencies]
az = "0.2.0"
This crate is free software: you can redistribute it and/or modify it under the terms of either
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache License, Version 2.0, shall be dual licensed as above, without any additional terms or conditions.