flat-maybe
flat-maybe copied to clipboard
Rust-style strict Maybe in Haskell: no space/indirection overhead.
Results
1
flat-maybe issues
Sort by
recently updated
recently updated
newest added
Have you considered having multiple definitions of null, one per the level of nesting? E.g., ```haskell data Null1 = Null1 data Null2 = Null2 -- ... -- Equivalent of `Nothing...