1 unstable release
0.1.0 | Jul 27, 2022 |
---|
#571 in Science
6KB
126 lines
lazytry
lazytry
aims for lazy data evaluation which may fail.
use lazytry::unsync::LazyTry;
let lazy: LazyTry<i32, _> = LazyTry::new(|| "1".parse());
assert_eq!(lazy.force().unwrap(), &1);
assert_eq!(lazy.force().unwrap(), &1);
use lazytry::unsync::LazyTryFn;
use std::num::{IntErrorKind, ParseIntError};
let lazy: LazyTryFn<i32, ParseIntError> = LazyTry::new(|| "a".parse());
assert_eq!(
*lazy.force().unwrap_err().into_err().unwrap().kind(),
IntErrorKind::InvalidDigit
);
The current code is quite experimental, including unproved use of unsafe (impl Sync), lack of documentation and a weird and incompleted api.
Dependencies
~49KB