I am looking for some vocabulary here. There are a number of shapes that have common names. For example L a = Empty | Cons a L Is generally called a "list," while T a = Leaf a | Node (T a) (T a) is a "binary tree" and St s a :: St (s->(a,s)) is the form of the State Monad.
I would like to know if a shape like this has a name:
data R a b = Q (a -> (R a b,b))
I've seen this pattern in Arrow frameworks and State Machine implementations. The recursive function makes it feel a little like a State Monad or a Cont Monad. It is also the only structure besides (->) and (>=>) for which I have seen an instance of Arrow defined.
Is there a common name for this data structure?
T a = Branch (T a) (T a) | Leaf a– amindfv Feb 28 '12 at 20:46asomewhere in thatT a? :D (sorry... I had to...) (or maybe it's a phantom type!? :p) – Ptival Feb 28 '12 at 23:54