Name: lambda-placeholders

Version: 0.0.0.0

Synopsis:            A library to emulate laceholders similar to Scala.

Description:         A description of the workings of placeholders in Scala can be found here: <http://www.artima.com/pins1ed/functions-and-closures.html#8.5>.

Homepage:            https://github.com/mmirman/lambda-placeholders

License:             BSD3

License-file:        LICENSE

Author:              Matthew Mirman
maintainer:          matt@mirman.com

category:            Language
build-type:          Simple
cabal-version:       >=1.6

extra-source-files: README.md Setup.hs

source-repository head
  type:    git
  location: git://github.com/mmirman/lambda-placeholders.git

library
  exposed-modules:     Language.LambdaPlaceholders
  build-depends:       base >= 0 && <= 7
  hs-source-dirs:      src
  
  ghc-options: -O2 -optc-O3

  extensions:  MultiParamTypeClasses,
               FlexibleInstances,
               FunctionalDependencies,
               UndecidableInstances,
               TupleSections,
               CPP