AccList

Plain source file: base/lib/AccList.hs (2001-09-06)

AccList is imported by: HsDeclMaps, HsExpMaps, HsFieldsMaps, HsGuardsMaps, HsPatMaps, HsTypeMaps, TiClasses, NameMaps, HsPropMaps, NameMapsPropDecorate.

-- $Id: AccList.hs,v 1.1 2001/09/06 02:12:55 hallgren Exp $

module AccList (accList) where


accList acc [] ans     = ans
accList acc (x:xs) ans = accList acc xs (acc x ans) -- LEFT-TO-RIGHT here

-- Property: accList == flip . foldl . flip

Index

(HTML for this module was generated on 2006-08-12. About the conversion tool.)