better_option_result 0.4.1

A better Option/Result alternative.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! i am sick and tired of the Result, Option API naming
//! conventions in Rust. `is`, `as`, `to`, `into` all the way through.
#![no_std]
#![allow(internal_features)]
#![feature(core_intrinsics)]
#![feature(offset_of_enum)]
#![feature(panic_internals)]
// todo: feature flags, for into_ok, into_err
// todo: remove core_intrinsics, panic_internals, offset_of_enum feature dependencies

mod betteroption;
mod betterresult;

pub use betteroption::BetterOption::{self, *};
pub use betterresult::BetterResult::{self, *};