null関数。

null :: [a] -> Bool

第1引数が空リストならTrueを返す。

null []
null ""
null [1]

結果。

True
True
False