-- Initial flat-maybe.cabal generated by cabal init. For further -- documentation, see http://haskell.org/cabal/users-guide/ name: flat-maybe version: 0.1.0.0 synopsis: Strict Maybe without space and indirection overhead description: Strict Maybe without space and indirection overhead. Inspired by Rust's Option, which is represented by either a pointer to the object or a specific "null" pointer. The implementation is a giant unsafe trick. homepage: https://github.com/AndrasKovacs/flat-maybe bug-reports: https://github.com/AndrasKovacs/flat-maybe/issues maintainer: puttamalac@gmail.com license: BSD3 license-file: LICENSE author: András Kovács maintainer: puttamalac@gmail.com copyright: 2015 András Kovács category: Data build-type: Simple cabal-version: >=1.10 tested-with: GHC == 7.10.2 source-repository head type: git location: https://github.com/AndrasKovacs/flat-maybe.git library exposed-modules: Data.Maybe.Flat -- other-modules: -- other-extensions: build-depends: base >=4.8 && <4.9, ghc-prim == 0.4.0.0 -- hs-source-dirs: default-language: Haskell2010 ghc-options: -O2