I've read about polymorphic constants/nullary polymorphic functions in Learn You A Haskell. It gave several examples of built-in ones, such as:
ghci> 20 :: Float
20.0
ghci> 20 :: Int
20
ghci> minBound :: Int
-2147483648
ghci> maxBound :: (Bool, Int, Char)
(True,2147483647,'\1114111')
However, it does not explain how to define your own. How are they defined?
memptyis another example of a polymorphic constant. – Dan Burton Feb 2 '12 at 1:46