canonicalize 0.1.3

A rust library to canonicalize values
Documentation
1
2
3
4
5
6
7
8
#![no_std]

/// Canonicalizes values
pub trait Canonicalize: Sized
{
    /// Performs the canonicalizing
    fn canon(self) -> Self;
}