compactable-0.1.2.2: compactable.cabal
name: compactable
version: 0.1.2.2
synopsis: A typeclass for structures which can be catMaybed, filtered, and partitioned.
description: This provides polymorphic implementations for filter, compact (catMaybes), and separate. It allows for higher performance implementations to be used in place of defaults for all data structures, and endeavors to centerally document those implementations. 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
tested-with: GHC == 8.4.1, GHC == 8.2.2, GHC == 8.0.2
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.12
, containers >= 0.5.7 && < 0.6
, transformers >= 0.5.2 && < 0.6
, vector >= 0.11 && < 0.13
, bifunctors >= 5.4.2 && < 5.6
hs-source-dirs: src
default-language: Haskell2010