Paraphrased from Wikipedia:
A unit type is a type that allows only one value (and thus can hold no information).
Several computer programming languages provide a unit type to specify the result type of a function with the sole purpose of causing a side effect, and the argument type of a function that does not require arguments.
- In Haskell, the unit type is called () and its only value is also (), reflecting the 0-tuple interpretation.
- In ML (including OCaml and Standard ML), the type is called unit but the value is written as ().
- In Scala, the unit type is called Unit and its only value is written as ().
- In Common Lisp the type named NULL is a unit type which has one value, namely the symbol NIL. NIL itself is used as the name of the bottom type.
Notes on usage:
- This tag should be used in preference to the "unit" tag which is much more ambiguous.
- This tag is NOT for units of measurement like height and weight: use the "units-of-measurement" tag for those.