7 lines
337 B
TeX
7 lines
337 B
TeX
So if we want to generalize it, an algebraic data type has one or more \textbf{constructors}, and each of them can have zero or more arguments. E.g.:
|
|
\begin{haskellcode}
|
|
data AlgDataType = Constr1 Type11 Type12
|
|
| Constr2 Type21
|
|
| Constr3 Type31 Type32 Type33
|
|
| Constr4
|
|
\end{haskellcode} |