| commit | 08ba63025a16712077f1f70deeb3a2c18582b99f | [log] [tgz] |
|---|---|---|
| author | Android Build Coastguard Worker <[email protected]> | Fri Jul 07 04:43:11 2023 +0000 |
| committer | Android Build Coastguard Worker <[email protected]> | Fri Jul 07 04:43:11 2023 +0000 |
| tree | 543441716e90d651a18c9a2ca72c0fd06a19c0b5 | |
| parent | d5fcc9aabd36be3a474596b2f7f51f6a080f5480 [diff] | |
| parent | 4de004c1fe410fab33de8e33fd713d195bc199be [diff] |
Snap for 10453563 from 4de004c1fe410fab33de8e33fd713d195bc199be to mainline-adservices-release Change-Id: Ie7194ea66f9668b1189165846047e8d458c350fd
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.