@hackage lambda-placeholders0.0.0.0
A library to emulate laceholders similar to Scala.
Categories
License
BSD-3-Clause
Maintainer
matt@mirman.com
Links
Versions
- 0.0.0.0 Thu, 29 May 2014
Installation
Dependencies (1)
Dependents (1)
@hackage/acme-everything
lambda-placeholders
lambda-placeholders is a Haskell library to emulate the placeholders feature of Scala.
Background
- Placeholders in Scala act similar to those used in category theory.
- Rather than create a lambda or name a function, an underscore is used in place of a parameter and the function is abstracted over that location.
- This placeholders library doesn't use underscores, rather it leverages similar capabilities found in TupleSections.
- A description of Scala placeholders can be found here.
Example
{-# LANGUAGE
TupleSections
#-}
module Main where
import Language.Placeholders
foo (a,b,c) = a + b + c
curried_foo = foo.$.(2, , )
main = do
putStrLn $ show $ curried_foo 4 5