| commit | 4bf24ad0a9b30d017a20a9e4c10e3028209230b6 | [log] [tgz] |
|---|---|---|
| author | android-build-team Robot <[email protected]> | Tue Mar 30 18:32:31 2021 +0000 |
| committer | android-build-team Robot <[email protected]> | Tue Mar 30 18:32:31 2021 +0000 |
| tree | 9348b0e0d4617d9e3bf58aff6a2a2d0db3e56b29 | |
| parent | 5c15f84cf017853d524cbd72a419b1b67f8241aa [diff] | |
| parent | dcec7851dce0b4eceef0be2eedfe58094548533b [diff] |
Snap for 7245843 from dcec7851dce0b4eceef0be2eedfe58094548533b to sc-mainline-release Change-Id: I8cce23ed7d90fa8fd49f4df20bde44edf9d69639
castErgonomic, 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.