tear 0.5.1

Typed early returns and loop control + Syntax sugar for try!-like error handling
Documentation
/*! Crate prelude

# Usage

```rust
use tear::prelude::*;
```

# Description

Simplifies importing every symbol needed for the macros to work.

It exports the following symbols:

- ValRet and its variants Val and Ret
- Looping
- `tear!`, `terror!` and `twist!` macros
- The useful `tear_if!` and `anybox!` macros
- `next_if!` and `last_if` because they're unlikely to conflict
- (f=experimental) `impl_judge_from_try!`

It also brings the Judge and Return traits into scope as they are required for the macros to work.
However, they are not imported as symbols.
*/

pub use crate::ValRet::{self, *};
pub use crate::Looping;

// Macros
pub use crate::{tear, terror, twist};
pub use crate::{tear_if, anybox};
pub use crate::{next_if, last_if};

#[cfg(feature = "experimental")] pub use crate::impl_judge_from_try;