reliq 0.1.0

A portable library of primitive-like constructs.
Documentation
1
2
3
4
5
6
7
8
9
10
use super::*;

pub type Result<T, Error> = ::core::result::Result<T, Error>;

pub enum Error {
    OpsError(ops::Error),
    IllegalHex,
    AlphaOverflow,
    AlphaUnderflow
}