I read in learn you haskell that
Enum members are sequentially ordered types ... Types in this class: (), Bool, Char ...
Also it appears in some signatures:
putChar :: Char -> IO ()
It is very difficult to find info about it in Google as the answers refer to problems of the "common parentheses" (use in function calls, precedence problems and the like).
Therefore, what does the expression ()
means? Is it a type? What are variables of type ()
? What is used for and when is it needed?
It is both a type and a value.
()
is a special type "pronounced" unit, and it has one value:()
, also pronounced unit. It is essentially the same as the typevoid
in Java or C/C++. If you're familiar with Python, think of it as theNoneType
which has the singletonNone
.It is useful when you want to denote an action that doesn't return anything. It is most commonly used in the context of Monads, such as the
IO
monad. For example, if you had the following function:And for some reason you decided that you just wanted to annoy the user and throw away the number they just passed in:
However,
return
is just aMonad
function, so we could abstract this a bit furtherThen
However, you don't have to write this function yourself, it already exists in
Control.Monad
as the functionvoid
that is even less constraining and works onFunctor
s:Why does it work on
Functor
instead ofMonad
? Well, for eachMonad
instance, you can write theFunctor
instance asBut you can't make a
Monad
out of everyFunctor
. It's like how a square is a rectangle but a rectangle isn't always a square, Monads form a subset of Functors.