packages feed

compactable-0.1.2.0: compactable.cabal

name:                compactable
version:             0.1.2.0
synopsis:            A typeclass for structures which can be catMaybed, filtered, and partitioned.
description:         This provides polymorphic implimentations for filter, compact (catMaybes), and separate. It allows for higher performance implimentations to be used in place of defaults for all data structures, and endeavors to centerally document those implimentations. Compactable aims to be as general and unconstrained as possible, providing instances for non-Functors like Set, as well as some Contravariants (though not published here). Compactable fully subsumes Data.Witherable, offers more laws, and is more general.
license:             BSD3
license-file:        LICENSE
author:              Isaac Shapira
maintainer:          fresheyeball@gmail.com
-- copyright:
category:            Control
build-type:          Simple
extra-source-files:  ChangeLog.md
cabal-version:       >=1.10

source-repository head
  type: git
  location: https://gitlab.com/fresheyeball/Compactable.git

library
  exposed-modules:     Control.Compactable
  -- other-modules:
  -- other-extensions:
  ghc-options: -Wall
  build-depends:       base         >= 4.9    && < 4.10.2
                     , containers   >= 0.5.7  && < 0.6
                     , transformers >= 0.5.2  && < 0.6
                     , vector       >= 0.11   && < 0.13
                     , bifunctors   >= 5.4.2  && < 5.5

  hs-source-dirs:      src
  default-language:    Haskell2010