resultats 0.1.0

A result facility to handle multiple errors.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![feature(try_trait_v2)]

pub mod ast;
pub mod format_error;
pub mod result;
pub mod source_code;

pub use result::{
    Error, Errors,
    Result::{self, Err, Ok},
};