Project

church

0.0
No commit activity in last 3 years
No release in over 3 years
Church provides top-level constant Procs to do various and sundry kinds of functional programming.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

 Project Readme

Church

Gem Version Build Status

Church is a module that wraps a bunch of constant Procs that do various functional programming tricks.

Examples

MAP[[1, 2, 3], &-> c { c * 2 }]
EACH[[1, 2, 3], &-> e { p e } ]

Why?

The point of writing everything using Procs, for me at least, is to eventually transform programs into non-alphanumeric versions of themselves. Church's design goal is to make that an easier process.