commit | 80f5cd0831f4dcf0f4cdd1453bdfeedd2e379582 | [log] [tgz] |
---|---|---|
author | Jakub Kotur <qtr@google.com> | Mon Dec 21 17:28:14 2020 +0100 |
committer | Jakub Kotur <qtr@google.com> | Fri Mar 05 15:02:21 2021 +0100 |
tree | 3c131e9a6e96d63c9d59a16721bcf780f03ee20e | |
parent | 10b8f7c79571400b592bfadcbb5a52873872b7e4 [diff] |
Initial import of cast-0.2.3. Bug: 155309706 Change-Id: Ie467335fa7d10dc1ac9e0083a27bfd1a057e9c69
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.