@hackage unpacked-maybe-numeric0.1.0.0

maybes of numeric values with fewer indirections

This library provides one Maybe type per the usual numeric types: Float, Double, Complex {Float|Double}, Int{|8|16|32|64}, and Word{|8|16|32|64}

All of the numeric types inside the Maybe are unboxed, while the Maybe value itself is represented as an Unboxed Sum (though for sub-machine-size Int/Word values, the Maybe is just a wrapper around the underlying type, with out-of-bounds corresponding to the Nothing value. Thus, the usage of these constructors is unsafe, as this is only checked internally).