commit | 4de004c1fe410fab33de8e33fd713d195bc199be | [log] [tgz] |
---|---|---|
author | Matthew Maurer <[email protected]> | Thu Mar 09 18:06:18 2023 +0000 |
committer | Automerger Merge Worker <[email protected]> | Thu Mar 09 18:06:18 2023 +0000 |
tree | 543441716e90d651a18c9a2ca72c0fd06a19c0b5 | |
parent | fe9804e29d650c494b61fe1a998ebcde3fb2ac84 [diff] | |
parent | 0d049ce7a1b26adf7a0065e915d2fffe45884039 [diff] |
Make cast available to product and vendor am: ee34eded1b am: 927a7333be am: 465532154b am: 0d049ce7a1 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/cast/+/2476328 Change-Id: I230ba084c1b63ac59c5b44fb94855d401717acb4 Signed-off-by: Automerger Merge Worker <[email protected]>
cast
Ergonomic, checked cast functions for primitive types
extern crate cast; // `u8` and `u16` are checked cast functions, use them to cast from any numeric // primitive to `u8`/`u16` respectively use cast::{u8, u16, Error}; // Infallible operations, like integer promotion, are equivalent to a normal // cast with `as` assert_eq!(u16(0u8), 0u16); // Everything else will return a `Result` depending on the success of the // operation assert_eq!(u8(0u16), Ok(0u8)); assert_eq!(u8(256u16), Err(Error::Overflow)); assert_eq!(u8(-1i8), Err(Error::Underflow)); assert_eq!(u8(1. / 0.), Err(Error::Infinite)); assert_eq!(u8(0. / 0.), Err(Error::NaN));
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.