Mon, 24 Oct 2022 09:41:43 +0300
Allow step closure of AlgIterators to indicate succesfull termination or failure.
0 | 1 | |
2 | use std::error::Error; | |
3 | ||
4 | pub type DynResult<T> = Result<T, Box<dyn Error>>; | |
5 | pub type DynError = DynResult<()>; | |
6 | ||
7 | ||
8 |