packages feed

data-filter-0.1.0.0: data-filter.cabal

name:                data-filter
version:             0.1.0.0
synopsis:            Utilities for filtering
homepage:            https://github.com/LadyBoonami/data-filter
license:             BSD2
license-file:        LICENSE
author:              Sophie Hirn
maintainer:          sophie.hirn@wyvernscale.com
copyright:           (c) 2018 Sophie Hirn
category:            Data
build-type:          Simple
extra-source-files:  ChangeLog.md, README.md
cabal-version:       >=1.10

description:
  Some helpers to make using Prelude.filter and similar value selection a bit
  easier. Includes combinators for predicates as well as an operator to match
  the constructor used for the given value.

source-repository head
  type:     git
  location: https://github.com/LadyBoonami/data-filter

library
  hs-source-dirs:      src
  default-language:    Haskell2010
  build-depends:
    base         < 5,
    data-default < 1

  exposed-modules:
    Data.Filter