packages feed

make-monofoldable-foldable-0.1.0.0: make-monofoldable-foldable.cabal

name:                 make-monofoldable-foldable
version:              0.1.0.0
synopsis:             Make a MonoFoldable type into an ordinary Foldable type.
description:
  For a container to be  "Foldable", it must be able to accept all types. This means that ByteStrings and unboxed arrays/vectors
  are not foldable, as they have restrictions on their elements. This wrapper makes them Foldable.
license: MIT
license-file: LICENSE
homepage:             
author:               Clinton Mead
maintainer:           clintonmead@gmail.com
category:             Data
build-type:           Simple
cabal-version:        >=1.10
tested-with: GHC == 8.0.2
bug-reports: https://github.com/clintonmead/make-monofoldable-foldable/issues

source-repository head
  type: git
  location: https://github.com/clintonmead/make-monofoldable-foldable.git

library
  exposed-modules: Data.MonoTraversable.WrapMonoFoldable
  build-depends:        base == 4.9.*, mono-traversable == 1.0.*
  hs-source-dirs:       src
  default-language:     Haskell2010