cookbook-2.1.0.0: Tiered general-purpose libraries with domain-specific applications.

Safe HaskellSafe-Inferred

Cookbook.Recipes.Algorithm

Documentation

climb :: Tree a -> [a]Source

treeMap :: Tree a -> (a -> a) -> Tree aSource

treeFilter :: Tree a -> (a -> Bool) -> Tree aSource

genMatrix :: (Int, Int) -> a -> [((Int, Int), a)]Source