category-theory-presentation/categories/30_How/300_Catamorphisms/050_morphism_Type_work.md
2013-02-28 16:49:12 +01:00

407 B

κατα-morphism: Type work


data StrF a = Cons Char a | Nil
data Str = StrF Str

-- generalize the construction of Str to other datatype
-- Mu :: type fixed point

data Mu f = InF { outF :: f (Mu f) }
data Str = Mu StrF

-- Example
foo=InF { outF = Cons 'f'
		(InF { outF = Cons 'o'
			(InF { outF = Cons 'o'
				(InF { outF = Nil })})})}