Search in: Word
Vietnamese keyboard: Off
Virtual keyboard: Show
Computing (FOLDOC) dictionary
recursive type
Jump to user comments
A data type which contains itself. The commonest example is
the list type, in Haskell:
data List a = Nil | Cons a (List a)