Returns a boolean as to whether or not Haskell List x is null (Haskell length = 0).

null x

Examples

> null []
True
> null ['a']
False