All ADTs are isomorphic (almost--see end) to some combination of (,),Either,(),(->),Void and Mu where
data Void --using empty data decls or
newtype Void = Void Void
and Mu computes the fixpoint of a functor
newtype Mu f = Mu (f (Mu f))
so for example
data [a] = [] | (a:[a])
is the same as
data [a] = Mu (ListF a)
data ListF a f = End | Pair a f
which itself is isomorphic to
newtype ListF a f = ListF (Either () (a,f))
since
data Maybe a = Nothing | Just a
is isomorphic to
newtype Maybe a = Maybe (Either () a)
you have
newtype ListF a f = ListF (Maybe (a,f))
which can be inlined in the mu to
data List a = List (Maybe (a,List a))
and your definition
data List a = List a (Maybe (List a))
is just the unfolding of the Mu and elimination of the outer Maybe (corresponding to non-empty lists)
and you are done...
a couple of things
Using custom ADTs increases clarity and type safety
This universality is useful: see GHC.Generic
Okay, I said almost isomorphic. It is not exactly, namely
hmm = List (Just undefined)
has no equivalent value in the [a] = [] | (a:[a]) definition of lists. This is because Haskell data types are coinductive, and has been a point of criticism of the lazy evaluation model. You can get around these problems by only using strict sums and products (and call by value functions), and adding a special "Lazy" data constructor
data SPair a b = SPair !a !b
data SEither a b = SLeft !a | SRight !b
data Lazy a = Lazy a --Note, this has no obvious encoding in Pure CBV languages,
--although Laza a = (() -> a) is semantically correct,
--it is strictly less efficient than Haskell's CB-Need
and then all the isomorphisms can be faithfully encoded.
Maybe Stringit is actually of typeMaybe [Char], but I think you're reinventing Monad transformers (see en.wikibooks.org/wiki/Haskell/Monad_transformers) but I am not sure as I myself am not too familiar with monads right now. – epsilonhalbe Jul 6 '12 at 15:50Maybe String(haskell.org/hoogle/?hoogle=Maybe+%5BChar%5D)[here] but they have a different meaning. I just pointed out that[]is a kind ofNothingand stuff, so I thought about usingNothingto remove "re-definition". – L01man Jul 6 '12 at 15:59[]toNothingwhen used with the datatypeMaybe List a. However, I'm only talking about the theorical side. The main problem comes from semantics... There is a parallel between lists and maybe, but there is nothing which is higher-order... In the same wayBooland DirectionHorizontal are similar, because their type constructors are antonyms, but you won't dotype Direction = Bool, so we can't doMaybe (List a). I feel like something is missing. – L01man Jul 6 '12 at 16:18stripPrefix :: Eq a => [a] -> [a] -> Maybe [a]-- take that! – Rotsor Jul 6 '12 at 17:20